summaryrefslogtreecommitdiffstats
path: root/Lib/smtplib.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-30394: Fix a socket leak in smtplib.SMTP.__init__() (#1700)Joel Hillacre2017-05-241-0/+1
|
* Issue #28022: Deprecate ssl-related arguments in favor of SSLContext.Christian Heimes2016-09-101-0/+8
| | | | | | | The deprecation include manual creation of SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, imaplib, smtplib, poplib and urllib. ssl.wrap_socket() is not marked as deprecated yet.
* Issue #27430: Fix typos, patch by scop.Berker Peksag2016-07-011-1/+1
|
* merge 3.4Benjamin Peterson2016-06-111-0/+5
|\
| * raise an error when STARTTLS failsBenjamin Peterson2016-06-111-0/+5
| |
* | #25446: Fix regression in smtplib's AUTH LOGIN support.R David Murray2015-11-081-10/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | The auth method tests simply weren't adequate because of the fact that smtpd doesn't support authentication. I borrowed some of Milan's code for that from issue #21935 and added it to the smtplib tests. Also discovered that the direct test for the 'auth' method wasn't actually testing anything and fixed it. The fix makes the new authobject mechanism work the way it is documented...the problem was that wasn't checking for a 334 return code if an initial-response was provided, which works fine for auth plain and cram-md5, but not for auth login.
* | remove duplicated imports (closes #25502)Benjamin Peterson2015-10-291-2/+0
| |
* | - Issue #15014: SMTP.auth() and SMTP.login() now support RFC 4954's optionalBarry Warsaw2015-07-091-16/+36
| | | | | | | | initial-response argument to the SMTP AUTH command.
* | #24218: Add SMTPUTF8 support to send_message.R David Murray2015-05-171-3/+26
| | | | | | | | Reviewed by Maciej Szulik.
* | #22027: Add RFC6531 support to smtplib.R David Murray2015-05-161-6/+36
| | | | | | | | Initial patch by Milan Oberkirch.
* | #16914: fix test errors under -W error::BytesWarning.R David Murray2015-04-161-2/+2
| | | | | | | | | | | | There are doubtless other debug messages in smtplib that would trigger an error if they were tested, but this fixes the things we do now test, which is good enough for now.
* | #16914: add timestamps to smtplib debugging output via new debuglevel 2.R David Murray2015-04-161-14/+19
| | | | | | | | Patch by Gavin Chappell and Maciej Szulik.
* | Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-6/+10
|\ \ | |/ | | | | | | robust at shutdown. If needs to release multiple resources, they are released even if errors are occured.
| * Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-6/+10
| | | | | | | | | | robust at shutdown. If needs to release multiple resources, they are released even if errors are occured.
* | Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-2/+2
|\ \ | |/
| * Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-2/+2
| |
* | merge 3.4 (#22921)Benjamin Peterson2014-11-231-4/+2
|\ \ | |/
| * don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-4/+2
| | | | | | | | Patch by Donald Stufft.
* | Merge #22215: have the smtplib 'quit' command reset the state.R David Murray2014-08-301-0/+4
|\ \ | |/
| * #22215: have the smtplib 'quit' command reset the state.R David Murray2014-08-301-0/+4
| | | | | | | | | | | | | | | | | | | | | | Without this reset, starttls would fail if a connect/starttls was done after a quit, because smtplib assumed the existing value of emspt_features was accurate, but it gets reset when starttls completes (and the new value does not contain the starttls capability, since tls is already started at that point). (There may be additional places where this lack of reset was an issue as well.) Patch by Milan Oberkirch.
* | #15014: Add 'auth' command to implement auth mechanisms and use it in login.R David Murray2014-07-031-44/+69
|/ | | | Patch by Milan Oberkirch.
* Fix issue #21641: Close the socket before raising the SMTPResponseException. ↵Senthil Kumaran2014-06-031-0/+1
| | | | | | Fixes the ResourceWarning in the test run. Patch by Claudiu.Popa.
* #17498: Defer SMTPServerDisconnected errors until the next command.R David Murray2014-04-141-3/+15
| | | | | | | | | | | | | Normally an SMTP server will return an error, and smtplib will then issue an RSET to return the connection to the known starting state. Some servers, however, disconnect after issuing certain errors. When we issue the RSET, this would result in raising an SMTPServerDisconnected error, *instead* of returning the error code the user of the library was expecting. This fix makes the internal RSET calls ignore the disconnection so that the error code is returned. The user of the library will then get the SMTPServerDisconnected error the next time they try to talk to the server. Patch by Kushal Das.
* merge with 3.3Georg Brandl2014-02-101-1/+4
|
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
|\ | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang lines in the unittestgui and checkpip scripts.
| * Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
| | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script.
* | Issue #19785: smtplib now supports SSLContext.check_hostname and server nameChristian Heimes2013-12-021-2/+7
| | | | | | | | indication for TLS/SSL connections.
* | Issue #19735: Implement private function ssl._create_stdlib_context() toChristian Heimes2013-11-231-8/+8
| | | | | | | | | | create SSLContext objects in Python's stdlib module. It provides a single configuration point and makes use of SSLContext.load_default_certs().
* | Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMACChristian Heimes2013-11-201-1/+1
| | | | | | | | module supports digestmod names, e.g. hmac.HMAC('sha1').
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
| |
* | Merge #18179: reflow paragraphs.R David Murray2013-06-231-22/+23
|\ \ | |/
| * #18179: reflow paragraphs.R David Murray2013-06-231-22/+23
| |
* | Merge #18179: document the local_hostname parameter.R David Murray2013-06-231-4/+7
|\ \ | |/ | | | | Original patch by Berker Peksag.
| * #18179: document the local_hostname parameter.R David Murray2013-06-231-4/+7
| | | | | | | | Original patch by Berker Peksag.
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-141-1/+1
| | | | | | | | ModuleNotFoundError.
* | #2118: IOError is deprecated, use OSError.R David Murray2013-04-141-1/+1
| |
* | #2118: Make SMTPException a subclass of IOError.R David Murray2013-04-131-1/+1
| | | | | | | | Initial patch by Ned Jackson Lovely.
* | Merge #2118: clarify smtplib exception documentation.R David Murray2013-04-131-2/+3
|\ \ | |/
| * #2118: clarify smtplib exception documentation.R David Murray2013-04-131-2/+3
| |
* | Merge: #5713: Handle 421 error codes during sendmail by closing the socket.R David Murray2013-03-211-2/+11
|\ \ | |/ | | | | | | | | | | | | | | This is a partial fix to the issue of servers disconnecting unexpectedly; in this case the 421 says they are disconnecting, so we close the socket and return the 421 in the appropriate error context. Original patch by Mark Sapiro, updated by Kushal Das, with additional tests by me.
| * Merge: #5713: Handle 421 error codes during sendmail by closing the socket.R David Murray2013-03-211-2/+11
| |\ | | | | | | | | | | | | | | | | | | | | | | | | This is a partial fix to the issue of servers disconnecting unexpectedly; in this case the 421 says they are disconnecting, so we close the socket and return the 421 in the appropriate error context. Original patch by Mark Sapiro, updated by Kushal Das, with additional tests by me.
| | * #5713: Handle 421 error codes during sendmail by closing the socket.R David Murray2013-03-211-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | This is a partial fix to the issue of servers disconnecting unexpectedly; in this case the 421 says they are disconnecting, so we close the socket and return the 421 in the appropriate error context. Original patch by Mark Sapiro, updated by Kushal Das, with additional tests by me.
* | | Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-171-5/+5
|\ \ \ | |/ / | | | | | | Initial patch by Serhiy Storchaka.
| * | Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-171-2/+2
| |\ \ |/ / / | | _ | | Patch by Serhiy Storchaka.
| * Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-171-2/+2
| | | | | | | | Patch by Serhiy Storchaka.
* | #12448: merge with 3.2.Ezio Melotti2011-10-181-0/+1
|\ \ | |/
| * #12448: smtplib now flushes stdout while running ``python -m smtplib``Ezio Melotti2011-10-181-0/+1
| | | | | | | | in order to display the prompt correctly. Patch by Petri Lehtinen.
* | Provide a better diagnosis on socket errorsAntoine Pitrou2011-08-271-2/+4
|\ \ | |/
| * Provide a better diagnosis on socket errorsAntoine Pitrou2011-08-271-2/+4
| |
* | Addressing the review comments by Antoine Pitrou for smtplib.py and ↵Senthil Kumaran2011-07-311-13/+19
| | | | | | | | test_smtplib.py. Review comments by Ezio Melotti for smtplib.rst