- ad3058e Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns by R. David Murray · 16 years ago
- 51a035e Issue 4929: Handle socket errors when receiving by Kristján Valur Jónsson · 16 years ago
- 4f1b1ed Fixed the semantic of timeout for socket.create_connection and by Facundo Batista · 17 years ago
- deaf2ca #2248: return result of QUIT from quit(). by Georg Brandl · 17 years ago
- ac2ed1e Issue #2143: Fix embedded readline() hang on SSL socket EOF. by Sean Reifscheider · 17 years ago
- 1660933 Issue 1776581. Minor corrections to smtplib, and two small tests. by Facundo Batista · 17 years ago
- bde4ae4 Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339 by Gregory P. Smith · 17 years ago
- 63bfc1d Comply with RFC 3207. Fixes issue 829951 - http://bugs.python.org/issue829951 by Gregory P. Smith · 17 years ago
- 98d19da More work on SSL support. by Bill Janssen · 18 years ago
- 470dcd2 remove use of non-existent SSLFakeSocket in apparently untested code by Bill Janssen · 18 years ago
- a6900e8 Don't lie in __all__ attributes when SSL is not available: only add the SSL by Thomas Wouters · 18 years ago
- 426ea0a This contains a number of things: by Bill Janssen · 18 years ago
- 366d626 Added timeout to smtplib (to SMTP and SMTP_SSL). Also created by Facundo Batista · 18 years ago
- ea5962f Whitespace normalization. by Tim Peters · 18 years ago
- c8f6c23 Simplify a little by handling the TCP case first. by Neal Norwitz · 18 years ago
- 1190a38 Patch #957003: Implement smtplib.LMTP. by Martin v. Löwis · 18 years ago
- 5a096e1 Use new email module names (#1637162, #1637159, #1637157). by Georg Brandl · 18 years ago
- abd8a33 Whitespace normalization. by Tim Peters · 19 years ago
- ee82c0e Patch #1567274: Support SMTP over TLS. by Martin v. Löwis · 19 years ago
- 215f13d Normalized a few cases of whitespace in function declarations. by Martin Blais · 19 years ago
- dcdfd22 bug #1257988: don't bail out on gethostbyname(gethostname()) failure by Georg Brandl · 19 years ago
- bd3bc4d Bug #1430298: It is now possible to send a mail with an empty by Georg Brandl · 19 years ago
- 58bd190 SMTP.help() was returning a tuple instead of the promised text. by Kurt B. Kaiser · 20 years ago
- dbecd93 Replace list of constants with tuples of constants. by Raymond Hettinger · 20 years ago
- 5954623 Patch #1100140: improved smtp connect debugging by Johannes Gijsbers · 20 years ago
- 9a98364 Replace rfc822.parseaddr with email.Utils.parseaddr. The implementation is by Johannes Gijsbers · 20 years ago
- 25946dd Patch #1075928: AUTH PLAIN in smtplib. by Johannes Gijsbers · 20 years ago
- e6f8a89 Debug output is now printed to sys.stderr . by Brett Cannon · 21 years ago
- 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
- 49c05d3 Patch #572031: AUTH method LOGIN for smtplib by Martin v. Löwis · 23 years ago
- 342456d smptlib did not handle empty addresses. by Raymond Hettinger · 23 years ago
- 469cdad Whitespace normalization. by Tim Peters · 23 years ago
- 301b1cd Patch #586999: Fix multiline string in sendmail example. by Martin v. Löwis · 23 years ago
- 385a77a remove o/s dependancy from test by Piers Lauder · 23 years ago
- 65230a2 Remove uses of the string and types modules: by Walter Dörwald · 23 years ago
- 9ea6c19 Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint. by Martin v. Löwis · 23 years ago
- f13eb55 Replace boolean test with is None. by Raymond Hettinger · 23 years ago
- 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 23 years ago
- 7fdfc2d Replace '== None' with 'is None' by Raymond Hettinger · 23 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 · 24 years ago
- 322c0d1 Only close sockets if they have been created. Reported by Blake Winton. by Martin v. Löwis · 24 years ago
- b64bec3 Whitespace normalization. by Tim Peters · 24 years ago
- f7fcf5e SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplib by Guido van Rossum · 24 years ago
- ae01046 Add login() method and SMTPAuthenticationError exception. SF patch by Guido van Rossum · 24 years ago
- 6be424f Remove redundant import by Andrew M. Kuchling · 24 years ago
- 2ad2569 Initialize msg to avoid unbound locals. by Martin v. Löwis · 24 years ago
- 4eb5940 Untabify IPv6 changes. by Martin v. Löwis · 24 years ago
- a43c2f8 Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. by Martin v. Löwis · 24 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 · 25 years ago
- 5bf94a0 Applied patch #101350, closing it. by Barry Warsaw · 25 years ago
- 0ebc1c6 Use socket.getfqdn() instead of defining make_fqdn(). by Fred Drake · 25 years ago
- caa658d Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the by Thomas Wouters · 25 years ago
- 7bc82bb add better algorithm to get fully qualified domain name for localhost by Peter Schneider-Kamp · 25 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 25 years ago
- a1ae884 Use TQSQ (triple quoted single quote) module docstring for better by Barry Warsaw · 25 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 · 26 years ago
- db23d3d Patch by Per Cederqvist: by Guido van Rossum · 26 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 · 27 years ago
- 2880f6e Untabified and deleted trailing blank lines. by Guido van Rossum · 27 years ago
- fcfb632 Latest version by The Dragon, who writes: by Guido van Rossum · 27 years ago
- 69a79bc Better RFC 821 compliance (MAIL and RCPT, and CRLF in data) by Guido van Rossum · 27 years ago
- 95e6f70 Eric Raymond added support for ESMTP protocol and corrected some typos by Guido van Rossum · 27 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