473,624 Members | 2,213 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

smtplib (111, 'Connection refused')

I'm using the smtplib module and I keep getting this error: (111,
'Connection refused') What could be causing this? I've tried it from a
different computer and it seems to work, but not from this specific
server. If port 25 was blocked for some reason, would that give me a
'connection refused' error?

-Josh
Jul 18 '05 #1
8 8948
Josh Close <na****@gmail.c om> writes:
I'm using the smtplib module and I keep getting this error: (111,
'Connection refused') What could be causing this? I've tried it from a
different computer and it seems to work, but not from this specific
server. If port 25 was blocked for some reason, would that give me a
'connection refused' error?


Yes. When in doubt, try telnet <host> <port>.
--
Chris Green <cm*@dok.org>
Fame may be fleeting but obscurity is forever.
Jul 18 '05 #2
Josh Close wrote:
I'm using the smtplib module and I keep getting this error: (111,
'Connection refused') What could be causing this?


This means there is no SMTP server running on the remote system.
However, there *is* a TCP implementation (typically the operating
system) on the other end that tells you port 25 is not being
listened to.

Regards,
Martin
Jul 18 '05 #3
Does smtplib even use a smtp server? I looked at the source and it
looks like it just connects via a socket and sends like that.

-Josh
On Fri, 17 Sep 2004 21:52:23 +0200, Martin v. Löwis <ma****@v.loewi s.de> wrote:
Josh Close wrote:
I'm using the smtplib module and I keep getting this error: (111,
'Connection refused') What could be causing this?


This means there is no SMTP server running on the remote system.
However, there *is* a TCP implementation (typically the operating
system) on the other end that tells you port 25 is not being
listened to.

Regards,
Martin


--
http://mail.python.org/mailman/listinfo/python-list

Jul 18 '05 #4
In article <ma************ *************** ***********@pyt hon.org>,
Josh Close <na****@gmail.c om> wrote:
Does smtplib even use a smtp server? I looked at the source and it
looks like it just connects via a socket and sends like that.
That's what SMTP is, the protocol to be used on that socket.
Your program is an SMTP client. Where is the SMTP server?

Donn Cave, do**@u.washingt on.edu
On Fri, 17 Sep 2004 21:52:23 +0200, Martin v. Löwis <ma****@v.loewi s.de>
wrote:
Josh Close wrote:
I'm using the smtplib module and I keep getting this error: (111,
'Connection refused') What could be causing this?


This means there is no SMTP server running on the remote system.
However, there *is* a TCP implementation (typically the operating
system) on the other end that tells you port 25 is not being
listened to.

Regards,
Martin

Jul 18 '05 #5
Josh Close wrote:
I'm using the smtplib module and I keep getting this error: (111,
'Connection refused') What could be causing this? I've tried it from a
different computer and it seems to work, but not from this specific
server. If port 25 was blocked for some reason, would that give me a
'connection refused' error?


Please show a snippet of the code you are using, so we can
see what you are trying to do here.
Jul 18 '05 #6
import smtplib

mail = smtplib.SMTP('l ocalhost')
mail.send('me', 'u***@domain.tl d','message goes here')
mail.quit()

but this fails at the smtplib.SMTP() line on one box, but not on another.

-Josh
On Fri, 17 Sep 2004 16:17:47 -0400, phansen <pe***@engcorp. com> wrote:
Josh Close wrote:
I'm using the smtplib module and I keep getting this error: (111,
'Connection refused') What could be causing this? I've tried it from a
different computer and it seems to work, but not from this specific
server. If port 25 was blocked for some reason, would that give me a
'connection refused' error?


Please show a snippet of the code you are using, so we can
see what you are trying to do here.
--
http://mail.python.org/mailman/listinfo/python-list

Jul 18 '05 #7
Josh Close wrote:
import smtplib

mail = smtplib.SMTP('l ocalhost')
mail.send('me', 'u***@domain.tl d','message goes here')
mail.quit()

but this fails at the smtplib.SMTP() line on one box, but not on another.


OK, so you have an SMTP server on one box but not another. Either
install an SMTP server on another box, or connect to "one box" on
both boxes, instead of connecting to "localhost" on either.

Regards,
Martin
Jul 18 '05 #8
----- Original Message -----
From: "Josh Close" <na****@gmail.c om>

import smtplib

mail = smtplib.SMTP('l ocalhost')
mail.send('me', 'u***@domain.tl d','message goes here')
mail.quit()

but this fails at the smtplib.SMTP() line on one box, but not on another.


You either only have an SMTP server running on one box (the successful one),
or localhost isn't configured properly on the failing machine

Jul 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2901
by: David Hughes | last post by:
I wonder if anyone can help me resolve this problem. Although my ISP (One and One) provides the facility to run Python 2.2 CGI programs, their technical support people don't seem to have any Python expertise. I am trying to run Gypsymail.py as a CGI program from a web form. It is nearly all working, except for the part that I have reduced to the following code: #!/usr/bin/python # the line above must contain the path to Python on your...
3
4670
by: yazzoo | last post by:
Does anyone know what causes an SMTPLIB DataError? The only thing I can find in the manual is exception SMTPDataError The SMTP server refused to accept the message data. My problem is a previously functioning script suddenly failed last week. My ISP thinks it maybe something to do with upgrading CPanel on their server -- maybe a library was missed, but when I try and execute a script I get...
8
2580
by: dccarson | last post by:
Here is a snippet of code which does not send to all recipients. However, it also does not inform me of this error. My suspicion is that this only fails for users with longer usernames. The two I seem to regularly fail on have 9 and 11 characters respectively. Most users have names <= 8 characters. domain = "myDomainHere.com" admin = "d123456@%s" % domain adminFull = "Full Name Here <%s>" % admin def mailMsg(text, subject, sender,...
0
3038
by: Tim Williams | last post by:
I have a working SMTP client that I need to add TLS capability to, I absolutely need the client to timeout within a specified time, but when I use the sock.timeout() line it freezes the reading of chars from SSLFakeFile used during TLS instead of timing out the client connection. I am working from my own hacked version of smtplib, but can demonstrate the problem using the standard module (Python 2.3.4). Can anyone suggest a...
3
4383
by: Van_Gogh | last post by:
Hi, I am learning how to use the smtplib module, but am having some very early problems, maybe because I don't understand it. So, am I correct that by following the example in the Python: >>> import smtplib >>> server = smtplib.SMTP('localhost') >>> server.sendmail('soothsayer@example.org', 'jcaesar@example.org', """To: jcaesar@example.org
1
5509
by: erikcw | last post by:
Hi, I'm trying to send an email message with python, and I'm getting this error: Traceback (most recent call last): File "wa.py", line 430, in ? main() File "wa.py", line 425, in main smtp.sendmail(fromaddr, to, msg.encode('utf-8'))
0
1769
by: devtalex | last post by:
hello all!... i'm novice here... I've such kind of issue. The purpose of my code is to copy a number of files by FTP (using different ports every time). There are different numbers of files every time. The prblem appears when there is lot of files to copy. On some accounts the minmum number of files fluently copied is 15, on other 50, etc... But at the end it gives such error message: Error : Cannot open data connection to...
0
1728
by: lesmith | last post by:
db2 governor failing with connection refused -------------------------------------------------------------------------------- We are trying to test using the db2 governor (udb v8) and get a message "connection refused" following the db2 start gov command. Has anyone seen this ...or any ideas on what to check? details Trying ::ffff:159.202.148.9... connect to address ::ffff:159.202.148.9: Connection refused Trying...
5
4675
by: zxo102 | last post by:
Hi, I am trying to use python module smtplib to send my email out on window xp (localhost). import smtplib server = smtplib.SMTP('localhost') but I got the error information as follows: Traceback (most recent call last):
0
8238
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8174
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8680
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8624
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8336
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7164
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6111
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4176
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2607
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.