- 49c05d3 Patch #572031: AUTH method LOGIN for smtplib by Martin v. Löwis · 22 years ago
- 342456d smptlib did not handle empty addresses. by Raymond Hettinger · 22 years ago
- 469cdad Whitespace normalization. by Tim Peters · 22 years ago
- 301b1cd Patch #586999: Fix multiline string in sendmail example. by Martin v. Löwis · 22 years ago
- 385a77a remove o/s dependancy from test by Piers Lauder · 22 years ago
- 65230a2 Remove uses of the string and types modules: by Walter Dörwald · 22 years ago
- 9ea6c19 Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint. by Martin v. Löwis · 22 years ago
- f13eb55 Replace boolean test with is None. by Raymond Hettinger · 22 years ago
- 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
- 7fdfc2d Replace '== None' with 'is None' by Raymond Hettinger · 22 years ago
- 863ac44 Whitespace normalization. by Tim Peters · 23 years ago
- be22ae6 ehlo(): A proper fix for SF bug #498572. RFC 1869 describes ESMTP by Barry Warsaw · 23 years ago
- 13e34f7 __init__(): We'll try to be more RFC 2821 compliant by providing for a by Barry Warsaw · 23 years ago
- 4b186af SMTP.__init__(): Fixed minor typo in docstring. by Barry Warsaw · 23 years ago
- 6730f26 Add local_hostname option to SMTP.__init__. If supplied, it is used by Neil Schemenauer · 23 years ago
- 3356766 Accept Unicode strings as SMTP TO addresses. Fixes #521270. 2.2.1 candidate. by Martin v. Löwis · 23 years ago
- e12454f The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. by Martin v. Löwis · 23 years ago
- 7675097 send(), ehlo(): Integrate patch #487310 by Fazal Majid. Consistently by Barry Warsaw · 23 years ago
- 2f8f4d3 SMTPError should be SMTPException; reported by Neal Norwitz. by Fred Drake · 23 years ago
- 322c0d1 Only close sockets if they have been created. Reported by Blake Winton. by Martin v. Löwis · 23 years ago
- b64bec3 Whitespace normalization. by Tim Peters · 23 years ago
- f7fcf5e SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplib by Guido van Rossum · 23 years ago
- ae01046 Add login() method and SMTPAuthenticationError exception. SF patch by Guido van Rossum · 23 years ago
- 6be424f Remove redundant import by Andrew M. Kuchling · 23 years ago
- 2ad2569 Initialize msg to avoid unbound locals. by Martin v. Löwis · 23 years ago
- 4eb5940 Untabify IPv6 changes. by Martin v. Löwis · 23 years ago
- a43c2f8 Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. by Martin v. Löwis · 23 years ago
- 0de6580 bunch more __all__ lists by Skip Montanaro · 24 years ago
- 8d87603 Aha. We can remove he string import after all by using ValueError. by Eric S. Raymond · 24 years ago
- 38151ed Fixed a bug in the test jig. by Eric S. Raymond · 24 years ago
- c013f30 String method conversion. by Eric S. Raymond · 24 years ago
- 495ad3c Whitespace normalization. by Tim Peters · 24 years ago
- 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
- 17bfef5 SMTP.connect(): If the socket.connect() raises a socket.error, be sure by Barry Warsaw · 24 years ago
- 5bf94a0 Applied patch #101350, closing it. by Barry Warsaw · 24 years ago
- 0ebc1c6 Use socket.getfqdn() instead of defining make_fqdn(). by Fred Drake · 24 years ago
- caa658d Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the by Thomas Wouters · 24 years ago
- 7bc82bb add better algorithm to get fully qualified domain name for localhost by Peter Schneider-Kamp · 24 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
- a1ae884 Use TQSQ (triple quoted single quote) module docstring for better by Barry Warsaw · 24 years ago
- 93a7c0f Fredrik Lundh: by Guido van Rossum · 25 years ago
- 98d9fd3 Simple changes by Gerrit Holl - move author acknowledgements out of by Guido van Rossum · 25 years ago
- 4b8c6ea Actually, the previous batch's comment should have been different; by Guido van Rossum · 25 years ago
- d25c1b7 A bunch of docstring fixes. by Barry Warsaw · 25 years ago
- bda10c8 In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- just by Guido van Rossum · 25 years ago
- db23d3d Patch by Per Cederqvist: by Guido van Rossum · 25 years ago
- 20c9228 Patch by Per Cederqvist, seemingly approved by The Dragon: by Guido van Rossum · 26 years ago
- 296e143 Changes by Per Cederquist and The Dragon. by Guido van Rossum · 26 years ago
- f123f84 Patch by Per Cederqvist, who writes: by Guido van Rossum · 26 years ago
- 40233ea Patch by Piers Lauder: make exceptions classes. by Guido van Rossum · 26 years ago
- 348fd06 In rcpt(), avoid a space after the TO: address when the option list is by Guido van Rossum · 26 years ago
- 0720177 Small, and final docstring merge with Dragon's version. by Barry Warsaw · 26 years ago
- a7d9bdf A few other docstring fixes, most importantly to be a little nicer to Emacs ;-) by Barry Warsaw · 26 years ago
- 4c4bec8 Nothing earthshattering, just some fixes to typos and other formatting by Barry Warsaw · 26 years ago
- 31bb8ce Change interface to sendmail: if the destination address is a string by Jeremy Hylton · 26 years ago
- 2880f6e Untabified and deleted trailing blank lines. by Guido van Rossum · 26 years ago
- fcfb632 Latest version by The Dragon, who writes: by Guido van Rossum · 26 years ago
- 69a79bc Better RFC 821 compliance (MAIL and RCPT, and CRLF in data) by Guido van Rossum · 26 years ago
- 95e6f70 Eric Raymond added support for ESMTP protocol and corrected some typos by Guido van Rossum · 26 years ago
- 18586f4 Add optional argument to help(). by Guido van Rossum · 27 years ago
- 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 27 years ago
- fc40a83 Sez The Dragon: by Guido van Rossum · 27 years ago
- bbe323e SMTP client by The Dragon De Monsyne <dragondm@integral.org>. by Guido van Rossum · 27 years ago