[issue3921] smtplib cannot sendmail over TLS

2009-04-25 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com 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 rep...@bugs.python.org

[issue3921] smtplib cannot sendmail over TLS

2009-04-25 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com 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-22 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com 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:

[issue3921] smtplib cannot sendmail over TLS

2009-02-17 Thread Musashi Tamura
Musashi Tamura yuri.musashi.miwa.tam...@gmail.com 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