summaryrefslogtreecommitdiff
path: root/Lib/smtplib.py
Commit message (Collapse)AuthorAgeFilesLines
* raise an error when STARTTLS failsBenjamin Peterson2016-06-111-0/+5
|
* 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
|
* don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-4/+2
| | | | Patch by Donald Stufft.
* #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.
* 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 #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-6/+6
|\ \ | |/ |/|
| * Merge #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-131-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
| |\ \
| * \ \ Merge: #5713: Handle 421 error codes during sendmail by closing the socket.R David Murray2013-03-201-4/+4
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | #18179: reflow paragraphs.R David Murray2013-06-231-22/+23
| |_|_|_|/ |/| | | |
* | | | | #18179: document the local_hostname parameter.R David Murray2013-06-231-4/+7
| |_|_|/ |/| | | | | | | | | | | Original patch by Berker Peksag.
* | | | #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-201-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-201-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-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-281-62/+90
|\ \ | |/ |/|
| * 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
| * Fix closes Issue11281 - smtplib.STMP gets source_address parameter, which ↵Senthil Kumaran2011-07-301-13/+27
| | | | | | | | adds the ability to bind to specific source address on a machine with multiple interfaces. Patch by Paulo Scardine.
| * #7484: simplify quoteaddr: if parseaddr throws an error it is a bug.R David Murray2011-07-181-14/+8
| | | | | | | | | | | | As far as I can tell, the try/except was ancient code, from before the email package rewrite where the philosophy of never throwing parsing errors was adopted.
| * Merge #7484: no more <> around addresses in VRFY or EXPNR David Murray2011-07-181-28/+42
| |\
| | * merge #12147: make send_message correctly handle Sender and Resent- headers.R David Murray2011-07-021-13/+39
| | |\
| | * \ merge #12283: Fixed regression in smtplib quoting of leading dots in DATA.R David Murray2011-06-091-1/+1
| | |\ \
| | * | | Issue #11893: Remove obsolete internal wrapper class `SSLFakeFile` in the ↵Antoine Pitrou2011-06-061-23/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | smtplib module. Patch by Catalin Iacob.
| | * | | Issue #8809: The SMTP_SSL constructor and SMTP.starttls() now supportAntoine Pitrou2011-05-181-5/+26
| | | | | | | | | | | | | | | | | | | | | | | | | passing a `context` argument pointing to an ssl.SSLContext instance. Patch by Kasun Herath.
| | * | | Merge: Issue #11927: SMTP_SSL now uses port 465 by default as documented.Antoine Pitrou2011-05-071-0/+13
| | |\ \ \
| | | * | | - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be usedBarry Warsaw2011-03-151-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | in a `with` statement. Contributed by Giampaolo Rodola.
* | | | | | Provide a better diagnosis on socket errorsAntoine Pitrou2011-08-281-2/+4
|/ / / / /
* | | | | #7484: no more <> around addresses in VRFY or EXPNR David Murray2011-07-181-2/+9
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The RFC doesn't say that they are allowed; apparently many mailers accept them, but not postfix. Contributions to this patch were made by Felipe Cruz and Catalin Iacob. The changeset also adds additional indirect tests for quoteaddr (null address and IDNA-encoded address).
* | | | #12147: make send_message correctly handle Sender and Resent- headers.R David Murray2011-07-021-13/+39
| |_|/ |/| | | | | | | | | | | Original patch by Nicolas Estibals. My tweaks to the patch were mostly style/cosmetic, and adding more tests.
* | | #12283: Fixed regression in smtplib quoting of leading dots in DATA.R David Murray2011-06-091-1/+1
|/ / | | | | | | | | | | I unfortunately introduced the regression when I refactored the code, and there were no tests of quoting so it wasn't caught. Now there is one.
* | Merge: Issue #11927: SMTP_SSL now uses port 465 by default as documented.Antoine Pitrou2011-05-071-2/+4
|\ \ | |/ |/|
| * Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by ↵Antoine Pitrou2011-05-071-2/+4
| | | | | | | | Kasun Herath.
| * Merged revisions 75064 via svnmerge fromEzio Melotti2009-09-251-2/+2
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r75064 | ezio.melotti | 2009-09-26 00:35:24 +0300 (Sat, 26 Sep 2009) | 1 line fix print statement ........
* | Merged revisions 88501 via svnmerge fromGiampaolo Rodolà2011-02-241-63/+73
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88501 | giampaolo.rodola | 2011-02-22 16:56:20 +0100 (mar, 22 feb 2011) | 1 line smtlib.py PEP8 normalization via pep8.py script. ........
* | #10321: Add support for sending binary DATA and Message objects to smtplibR. David Murray2010-11-081-6/+53
| |