[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: Is this still an issue? The bug is 10 years old and the patch two years. -- nosy: +christian.heimes status: open -> pending versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4 ___ Python tracker

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2014-08-29 Thread R. David Murray
R. David Murray added the comment: Milan's patch should be correct. It would be nice to have a reproducer. -- ___ Python tracker ___ __

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2014-08-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: David, do you agree with either of the proposed changes? -- nosy: +terry.reedy versions: +Python 3.4, Python 3.5 -Python 2.6, Python 3.1, Python 3.2 ___ Python tracker __

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2014-07-23 Thread Milan Oberkirch
Milan Oberkirch added the comment: This bug was resolved for SMTPServerDisconnected exceptions but not for SSLError. Is it still reproducible? If so, the attached patch should fix it for 3.x (couldn't test if it does because I don't know how to reproduce the error). -- nosy: +jesstess,

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2011-11-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +barry, r.david.murray -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2011-11-15 Thread kxroberto
kxroberto added the comment: ping! perhaps I forgot to write that I uploaded the cleaned patch also on 2010-08-23. I really think this simple patch is necessary. Just seen the same problem again - as I forgot the patch in one of my recent Python update installations. When SMTPDataError, SMTPR

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2010-08-23 Thread kxroberto
Changes by kxroberto : Removed file: http://bugs.python.org/file7227/smtplib-authplain-tryrset.patch ___ Python tracker ___ ___ Python-bugs-

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2010-08-23 Thread kxroberto
Changes by kxroberto : Added file: http://bugs.python.org/file18613/smtplib_nosideeffecterror.patch ___ Python tracker ___ ___ Python-bugs-l

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2010-08-23 Thread kxroberto
kxroberto added the comment: still I think all 3 self.rset()'s in SMTP.sendmail, which are followed by a raise statement have to be bracketed with an except clause or so - nowadays better like """ try: self.res() except (EnvironmentError, SMTPException): pass """, as all socket.error, ss

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2010-08-22 Thread Mark Lawrence
Mark Lawrence added the comment: The change to the encode_plain method in the patch was done via #1075928 on 2004-12-06. The try/except change around a call to self.rset() was never implemented. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

[issue1481032] patch smtplib:when SMTPDataError, rset crashes with sslerror

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ ___