summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libsmtplib.tex
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1227442: smtplib.SMTP.sendmail() accepts a string or list as to_addrs.Georg Brandl2005-06-251-7/+8
|
* SF patch #859286: documentation bool change fixRaymond Hettinger2003-12-311-2/+3
| | | | (Contributed by George Yoshida.)
* Clean-up example code: remove string module and backticks.Raymond Hettinger2003-09-221-3/+2
|
* ^D means EOF on Unix but not on Windows. Expand the example's prompt toTim Peters2003-06-151-5/+5
| | | | | | tell Windows Truth too. Bugfix candidate.
* There's no such method as has_option() -- should be has_extn().Greg Ward2003-01-081-2/+2
|
* Add local_hostname to SMTP.__init__().Neil Schemenauer2002-03-241-1/+2
|
* Use the \note and \warning macros where appropriate.Fred Drake2001-10-201-6/+4
|
* Markup adjustments for consistency.Fred Drake2001-09-141-5/+6
|
* SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplibGuido van Rossum2001-09-141-0/+8
| | | | | | | | | | | This patch adds the features from RFC 2487 (Secure SMTP over TLS) to the smtplib module: - A starttls() function - Wrapper classes that simulate enough of sockets and files for smtplib, but really wrap a SSLObject - reset the list of known SMTP extensions at each call of ehlo(). This should have been the case anyway.
* Documentation for the new login() method of the smtplib.SMTP class,Fred Drake2001-09-111-0/+18
| | | | | contributed by Gerhard Häring. This is part of SF patch #460112.
* Fix bug in smtplib example: the prompt said to end the message with ^D,Fred Drake2001-05-201-3/+6
| | | | | | | but doing so raised EOFError. This makes it work as advertised and converts to string methods where reasonable. This closes SF bug #424776.
* Replace minimal \seetext references with better annotated \seerfcFred Drake2000-10-031-7/+8
| | | | | references, telling the reader more about what to expect at the other end of the links.
* Rob W. W. Hooft's spelling fixes for the Library Reference. I hopeThomas Wouters2000-07-161-1/+1
| | | | | | | | | SourceForge doesn't choke on this batch :-) I'm not entirely sure this is 100% correct. The patch changes an \index{persistency} to \index{presistence}, and I don't know what \index{} does. But it seems to do so persi--er, consistently, so I hope it isn't a problem.
* Removed bogus connect() call in SMTP example; reported by TravisFred Drake2000-04-051-12/+0
| | | | | | B. Hartwell <slt5v@cc.usu.edu>. Removed second copy of the "See also" section!
* Merged changes from the 1.5.2p2 release.Fred Drake2000-04-031-18/+35
| | | | (Very rough.)
* Use \citetitle instead of \emph.Fred Drake1999-11-091-4/+4
|
* Added descriptions of the various exceptions, based on the docstrings.Fred Drake1999-04-221-24/+65
| | | | Various small cleanups.
* Important fix mentioned by The Dragon De Monsyne: the sendmail()Guido van Rossum1999-04-211-2/+1
| | | | | method does _not_ disconnect the connection when it throws a SMTPHeloError!
* Updated documentation by Per Cederqvist. I've added back theGuido van Rossum1999-04-071-15/+58
| | | | | documentation sendmail() to reflect the changes by The Dragon (see smtplib.py checkin).
* Add an explanation about what the example does and doesn't do.Fred Drake1998-12-221-2/+7
| | | | | Fix an appearantly new behavior with latex2html with quoting. (Good incentive to work on the SGML conversion! ;)
* Do all the right imports. Problem reported by Martijn FaassenFred Drake1998-11-301-1/+2
| | | | <faassen@vet.uu.nl>.
* New section header style.Fred Drake1998-08-101-2/+3
| | | | Fix up a few synopses.
* In the example, make sure all the imports are done.Fred Drake1998-08-071-3/+2
|
* Adjusted to use the new module synopsis support macros.Fred Drake1998-07-231-2/+4
|
* Mark the actual SMTP commands (HELO, etc.) the same way FTP & NNTP commandsFred Drake1998-07-011-29/+36
| | | | | | are in the appropriate sections. Some minor nits.
* Use the real name of the module: "smtplib", not "smtp".Fred Drake1998-06-301-56/+73
| | | | | | Use logical (& consistent) markup. Added a see-also section at the end.
* Contributions by Eric Raymond: documentation for modulesGuido van Rossum1998-06-281-0/+144
cmd, multifile and smtplib.