[issue3921] smtplib cannot sendmail over TLS

2009-04-25 Thread Daniel Diniz
Daniel Diniz added the comment: Actually, this is fixed by the patch in issue 5259 (also has test). -- resolution: -> duplicate status: open -> closed superseder: -> smtplib is broken in Python3 ___ Python tracker

[issue3921] smtplib cannot sendmail over TLS

2009-04-25 Thread Daniel Diniz
Daniel Diniz added the comment: As pointed by Mariano on IRC, this is closely related to #5259 and #5304. -- Added file: http://bugs.python.org/file13782/smtpbug.py ___ Python tracker __

[issue3921] smtplib cannot sendmail over TLS

2009-04-22 Thread Daniel Diniz
Daniel Diniz added the comment: The attached patch makes using smtplib in py3k possible. It isn't proposed as a correct fix. -- keywords: +easy, patch nosy: +ajaksu2 priority: -> high stage: -> test needed type: -> behavior Added file: http://bugs.python.org/file13736/smtplib.diff _

[issue3921] smtplib cannot sendmail over TLS

2009-02-17 Thread Musashi Tamura
Musashi Tamura added the comment: The difference is this line. (2.5, work) send: 'AUTH PLAIN AGxhbWJkYS5sZXRAZ21haWwuY29tAGNoaWtha29zMDA=\r\n' (Python3, error) send: 'AUTH PLAIN AGxhbWJkYS5sZXRAZ21haWwuY29tAGNoaWtha29zMDA=\n\r\n' -- nosy: +miwa ___

[issue3921] smtplib cannot sendmail over TLS

2008-09-21 Thread Takafumi SHIDO
New submission from Takafumi SHIDO <[EMAIL PROTECTED]>: when a SMTP object tries to send a mail through TLS, the smtp server replies retcode 502. When a test code (sendmail_test.py) is executed on Python 3, it stacks on sending mail while the test code works on Python 2.5. Following is the res