| Commit message (Expand) | Author | Age | Files | Lines |
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -4/+4 |
|
|
* | Patch #572031: AUTH method LOGIN for smtplib | Martin v. Löwis | 2002-10-06 | 1 | -1/+1 |
|
|
* | smptlib did not handle empty addresses. | Raymond Hettinger | 2002-09-05 | 1 | -3/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-08-08 | 1 | -1/+1 |
|
|
* | Patch #586999: Fix multiline string in sendmail example. | Martin v. Löwis | 2002-07-28 | 1 | -1/+1 |
|
|
* | remove o/s dependancy from test | Piers Lauder | 2002-07-27 | 1 | -7/+32 |
|
|
* | Remove uses of the string and types modules: | Walter Dörwald | 2002-06-03 | 1 | -2/+1 |
|
|
* | Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint. | Martin v. Löwis | 2002-06-02 | 1 | -0/+2 |
|
|
* | Replace boolean test with is None. | Raymond Hettinger | 2002-06-02 | 1 | -1/+1 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
|
|
* | Replace '== None' with 'is None' | Raymond Hettinger | 2002-05-31 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-04-16 | 1 | -2/+2 |
|
|
* | ehlo(): A proper fix for SF bug #498572. RFC 1869 describes ESMTP | Barry Warsaw | 2002-04-15 | 1 | -1/+5 |
|
|
* | __init__(): We'll try to be more RFC 2821 compliant by providing for a | Barry Warsaw | 2002-03-26 | 1 | -2/+11 |
|
|
* | SMTP.__init__(): Fixed minor typo in docstring. | Barry Warsaw | 2002-03-25 | 1 | -1/+1 |
|
|
* | Add local_hostname option to SMTP.__init__. If supplied, it is used | Neil Schemenauer | 2002-03-24 | 1 | -10/+10 |
|
|
* | Accept Unicode strings as SMTP TO addresses. Fixes #521270. | Martin v. Löwis | 2002-02-24 | 1 | -1/+1 |
|
|
* | The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. | Martin v. Löwis | 2002-02-16 | 1 | -3/+1 |
|
|
* | send(), ehlo(): Integrate patch #487310 by Fazal Majid. Consistently | Barry Warsaw | 2001-12-14 | 1 | -0/+2 |
|
|
* | SMTPError should be SMTPException; reported by Neal Norwitz. | Fred Drake | 2001-10-13 | 1 | -2/+2 |
|
|
* | Only close sockets if they have been created. Reported by Blake Winton. | Martin v. Löwis | 2001-10-07 | 1 | -1/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-09-18 | 1 | -7/+7 |
|
|
* | SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplib | Guido van Rossum | 2001-09-14 | 1 | -2/+54 |
|
|
* | Add login() method and SMTPAuthenticationError exception. SF patch | Guido van Rossum | 2001-09-11 | 1 | -3/+93 |
|
|
* | Remove redundant import | Andrew M. Kuchling | 2001-08-13 | 1 | -1/+1 |
|
|
* | Initialize msg to avoid unbound locals. | Martin v. Löwis | 2001-07-31 | 1 | -0/+1 |
|
|
* | Untabify IPv6 changes. | Martin v. Löwis | 2001-07-26 | 1 | -16/+16 |
|
|
* | Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. | Martin v. Löwis | 2001-07-24 | 1 | -12/+20 |
|
|
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 1 | -0/+5 |
|
|
* | Aha. We can remove he string import after all by using ValueError. | Eric S. Raymond | 2001-02-09 | 1 | -2/+1 |
|
|
* | Fixed a bug in the test jig. | Eric S. Raymond | 2001-02-09 | 1 | -1/+1 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -13/+13 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -31/+31 |
|
|
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -6/+6 |
|
|
* | SMTP.connect(): If the socket.connect() raises a socket.error, be sure | Barry Warsaw | 2000-11-08 | 1 | -1/+5 |
|
|
* | Applied patch #101350, closing it. | Barry Warsaw | 2000-09-01 | 1 | -1/+3 |
|
|
* | Use socket.getfqdn() instead of defining make_fqdn(). | Fred Drake | 2000-08-16 | 1 | -27/+2 |
|
|
* | Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the | Thomas Wouters | 2000-08-15 | 1 | -13/+27 |
|
|
* | add better algorithm to get fully qualified domain name for localhost | Peter Schneider-Kamp | 2000-08-10 | 1 | -17/+21 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -2/+2 |
|
|
* | Use TQSQ (triple quoted single quote) module docstring for better | Barry Warsaw | 2000-07-09 | 1 | -2/+2 |
|
|
* | Fredrik Lundh: | Guido van Rossum | 2000-03-28 | 1 | -1/+1 |
|
|
* | Simple changes by Gerrit Holl - move author acknowledgements out of | Guido van Rossum | 2000-02-28 | 1 | -8/+8 |
|
|
* | Actually, the previous batch's comment should have been different; | Guido van Rossum | 2000-02-04 | 1 | -2/+2 |
|
|
* | A bunch of docstring fixes. | Barry Warsaw | 1999-11-28 | 1 | -23/+22 |
|
|
* | In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- just | Guido van Rossum | 1999-10-22 | 1 | -2/+10 |
|
|
* | Patch by Per Cederqvist: | Guido van Rossum | 1999-06-09 | 1 | -3/+6 |
|
|
* | Patch by Per Cederqvist, seemingly approved by The Dragon: | Guido van Rossum | 1999-04-21 | 1 | -3/+6 |
|
|
* | Changes by Per Cederquist and The Dragon. | Guido van Rossum | 1999-04-07 | 1 | -49/+118 |
|
|
* | Patch by Per Cederqvist, who writes: | Guido van Rossum | 1999-03-29 | 1 | -6/+15 |
|
|