summaryrefslogtreecommitdiffstats
path: root/Lib/smtplib.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Only close sockets if they have been created. Reported by Blake Winton.Martin v. Löwis2001-10-071-1/+3
* Whitespace normalization.Tim Peters2001-09-181-7/+7
* SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplibGuido van Rossum2001-09-141-2/+54
* Add login() method and SMTPAuthenticationError exception. SF patchGuido van Rossum2001-09-111-3/+93
* Remove redundant importAndrew M. Kuchling2001-08-131-1/+1
* Initialize msg to avoid unbound locals.Martin v. Löwis2001-07-311-0/+1
* Untabify IPv6 changes.Martin v. Löwis2001-07-261-16/+16
* Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients.Martin v. Löwis2001-07-241-12/+20
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+5
* Aha. We can remove he string import after all by using ValueError.Eric S. Raymond2001-02-091-2/+1
* Fixed a bug in the test jig.Eric S. Raymond2001-02-091-1/+1
* String method conversion.Eric S. Raymond2001-02-091-13/+13
* Whitespace normalization.Tim Peters2001-01-151-31/+31
* Update the code to better reflect recommended style:Fred Drake2000-12-121-6/+6
* SMTP.connect(): If the socket.connect() raises a socket.error, be sureBarry Warsaw2000-11-081-1/+5
* Applied patch #101350, closing it.Barry Warsaw2000-09-011-1/+3
* Use socket.getfqdn() instead of defining make_fqdn().Fred Drake2000-08-161-27/+2
* Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of theThomas Wouters2000-08-151-13/+27
* add better algorithm to get fully qualified domain name for localhostPeter Schneider-Kamp2000-08-101-17/+21
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-2/+2
* Use TQSQ (triple quoted single quote) module docstring for betterBarry Warsaw2000-07-091-2/+2
* Fredrik Lundh:Guido van Rossum2000-03-281-1/+1
* Simple changes by Gerrit Holl - move author acknowledgements out ofGuido van Rossum2000-02-281-8/+8
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-2/+2
* A bunch of docstring fixes.Barry Warsaw1999-11-281-23/+22
* In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- justGuido van Rossum1999-10-221-2/+10
* Patch by Per Cederqvist:Guido van Rossum1999-06-091-3/+6
* Patch by Per Cederqvist, seemingly approved by The Dragon:Guido van Rossum1999-04-211-3/+6
* Changes by Per Cederquist and The Dragon.Guido van Rossum1999-04-071-49/+118
* Patch by Per Cederqvist, who writes:Guido van Rossum1999-03-291-6/+15
* Patch by Piers Lauder: make exceptions classes.Guido van Rossum1999-01-151-14/+13
* In rcpt(), avoid a space after the TO: address when the option list isGuido van Rossum1999-01-141-2/+2
* Small, and final docstring merge with Dragon's version.Barry Warsaw1998-12-221-1/+5
* A few other docstring fixes, most importantly to be a little nicer toBarry Warsaw1998-12-221-54/+59
* Nothing earthshattering, just some fixes to typos and other formattingBarry Warsaw1998-12-221-50/+53
* Change interface to sendmail: if the destination address is a stringJeremy Hylton1998-08-131-1/+6