This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: smtplib starttls() didn't do TLS Close Notify when quit()
Type: Stage:
Components: Extension Modules Versions:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: andcycle
Priority: low Keywords:

Created on 2007-05-07 01:40 by andcycle, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (1)
msg31961 - (view) Author: AndCycle (andcycle) Date: 2007-05-07 01:40
[code]
server = smtplib.SMTP('smtp.gmail.com')
server.set_debuglevel(1)
server.ehlo('x')
server.starttls()
server.ehlo('x')
server.noop()
server.rset()
server.quit()
[/code]
will always result in "sslerror: (8, 'EOF occurred in violation of protocol')",
although this won't really effect data transmission but this is really annoying,

relative discussion can be found
http://www.dbforums.com/archive/index.php/t-1401931.html
History
Date User Action Args
2022-04-11 14:56:24adminsetgithub: 44937
2007-05-07 01:40:25andcyclecreate