summaryrefslogtreecommitdiff
path: root/Lib/smtplib.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by ...Antoine Pitrou2011-05-071-2/+4
* smtlib.py PEP8 normalization via pep8.py script.Giampaolo Rodolà2011-02-241-60/+75
* Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returnsR. David Murray2009-05-231-3/+4
* Issue 4929: Handle socket errors when receivingKristján Valur Jónsson2009-01-151-1/+4
* Fixed the semantic of timeout for socket.create_connection andFacundo Batista2008-05-291-2/+4
* #2248: return result of QUIT from quit().Georg Brandl2008-03-271-1/+2
* Issue #2143: Fix embedded readline() hang on SSL socket EOF.Sean Reifscheider2008-03-201-0/+1
* Issue 1776581. Minor corrections to smtplib, and two small tests.Facundo Batista2008-02-231-2/+2
* Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339Gregory P. Smith2008-01-171-10/+30
* Comply with RFC 3207.Gregory P. Smith2008-01-171-0/+8
* More work on SSL support.Bill Janssen2007-09-101-2/+2
* remove use of non-existent SSLFakeSocket in apparently untested codeBill Janssen2007-08-311-4/+2
* Don't lie in __all__ attributes when SSL is not available: only add the SSLThomas Wouters2007-08-301-1/+3
* This contains a number of things:Bill Janssen2007-08-291-61/+54
* Added timeout to smtplib (to SMTP and SMTP_SSL). Also createdFacundo Batista2007-03-281-25/+10
* Whitespace normalization.Tim Peters2007-03-121-1/+1
* Simplify a little by handling the TCP case first.Neal Norwitz2007-03-101-16/+16
* Patch #957003: Implement smtplib.LMTP.Martin v. Löwis2007-03-091-1/+46
* Use new email module names (#1637162, #1637159, #1637157).Georg Brandl2007-01-221-3/+3
* Whitespace normalization.Tim Peters2006-11-031-1/+1
* Patch #1567274: Support SMTP over TLS.Martin v. Löwis2006-10-271-5/+34
* Normalized a few cases of whitespace in function declarations.Martin Blais2006-06-061-1/+1
* bug #1257988: don't bail out on gethostbyname(gethostname()) failureGeorg Brandl2006-03-311-1/+5
* Bug #1430298: It is now possible to send a mail with an emptyGeorg Brandl2006-02-171-1/+4
* SMTP.help() was returning a tuple instead of the promised text.Kurt B. Kaiser2005-06-261-1/+1
* Replace list of constants with tuples of constants.Raymond Hettinger2005-02-061-1/+1
* Patch #1100140: improved smtp connect debuggingJohannes Gijsbers2005-01-161-2/+2
* Replace rfc822.parseaddr with email.Utils.parseaddr. The implementation isJohannes Gijsbers2005-01-081-2/+2
* Patch #1075928: AUTH PLAIN in smtplib.Johannes Gijsbers2004-12-061-1/+1
* Debug output is now printed to sys.stderr .Brett Cannon2004-07-101-9/+10
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-4/+4
* Patch #572031: AUTH method LOGIN for smtplibMartin v. Löwis2002-10-061-1/+1
* smptlib did not handle empty addresses.Raymond Hettinger2002-09-051-3/+3
* Whitespace normalization.Tim Peters2002-08-081-1/+1
* Patch #586999: Fix multiline string in sendmail example.Martin v. Löwis2002-07-281-1/+1
* remove o/s dependancy from testPiers Lauder2002-07-271-7/+32
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-2/+1
* Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint.Martin v. Löwis2002-06-021-0/+2
* Replace boolean test with is None.Raymond Hettinger2002-06-021-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* Replace '== None' with 'is None'Raymond Hettinger2002-05-311-1/+1
* Whitespace normalization.Tim Peters2002-04-161-2/+2
* ehlo(): A proper fix for SF bug #498572. RFC 1869 describes ESMTPBarry Warsaw2002-04-151-1/+5
* __init__(): We'll try to be more RFC 2821 compliant by providing for aBarry Warsaw2002-03-261-2/+11
* SMTP.__init__(): Fixed minor typo in docstring.Barry Warsaw2002-03-251-1/+1
* Add local_hostname option to SMTP.__init__. If supplied, it is usedNeil Schemenauer2002-03-241-10/+10
* Accept Unicode strings as SMTP TO addresses. Fixes #521270.Martin v. Löwis2002-02-241-1/+1
* The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715.Martin v. Löwis2002-02-161-3/+1
* send(), ehlo(): Integrate patch #487310 by Fazal Majid. ConsistentlyBarry Warsaw2001-12-141-0/+2
* SMTPError should be SMTPException; reported by Neal Norwitz.Fred Drake2001-10-131-2/+2