Re: smtplib error('Connection reset by peer')

2006-01-08 Thread Tim Roberts
"Van_Gogh" <[EMAIL PROTECTED]> wrote: > >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') serve

Re: smtplib error('Connection reset by peer')

2006-01-06 Thread LordLaraby
Do you actually run an SMTP server on your local machine and is it configured to accept mail on the localhost interface and does it allow mail forwarding such as you attempted? LL -- http://mail.python.org/mailman/listinfo/python-list

Re: smtplib error('Connection reset by peer')

2006-01-05 Thread Tim Williams (gmail)
On 4 Jan 2006 15:47:34 -0800, Van_Gogh <[EMAIL PROTECTED]> wrote: Hi,I am learning how to use the smtplib module, but am having some veryearly problems, maybe because I don't understand it.So, am I correct that by following the example in the Python: [snip]  When I try to create the server(the li

Re: smtplib error('Connection reset by peer')

2006-01-04 Thread Van_Gogh
I should mention that I'm on Windows XP. -- http://mail.python.org/mailman/listinfo/python-list

smtplib error('Connection reset by peer')

2006-01-04 Thread Van_Gogh
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('[EMAIL PROTECTED]', '[EMAIL PR