| 
									
										
										
										
											1998-08-10 19:42:37 +00:00
										 |  |  | \section{\module{rfc822} --- | 
					
						
							| 
									
										
										
										
											1999-04-22 21:23:22 +00:00
										 |  |  |          Parse RFC 822 mail headers} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 21:23:22 +00:00
										 |  |  | \declaremodule{standard}{rfc822} | 
					
						
							| 
									
										
										
										
											1998-07-23 17:59:49 +00:00
										 |  |  | \modulesynopsis{Parse \rfc{822} style mail headers.} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | This module defines a class, \class{Message}, which represents a | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | collection of ``email headers'' as defined by the Internet standard | 
					
						
							| 
									
										
										
										
											1998-02-09 19:16:20 +00:00
										 |  |  | \rfc{822}.  It is used in various contexts, usually to read such | 
					
						
							| 
									
										
										
										
											1998-06-16 22:27:40 +00:00
										 |  |  | headers from a file.  This module also defines a helper class  | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \class{AddressList} for parsing \rfc{822} addresses.  Please refer to | 
					
						
							|  |  |  | the RFC for information on the specific syntax of \rfc{822} headers. | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | The \refmodule{mailbox}\refstmodindex{mailbox} module provides classes  | 
					
						
							|  |  |  | to read mailboxes produced by various end-user mail programs. | 
					
						
							| 
									
										
										
										
											1997-06-02 17:30:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | \begin{classdesc}{Message}{file\optional{, seekable}} | 
					
						
							| 
									
										
										
										
											1998-06-10 21:34:27 +00:00
										 |  |  | A \class{Message} instance is instantiated with an input object as | 
					
						
							|  |  |  | parameter.  Message relies only on the input object having a | 
					
						
							| 
									
										
										
										
											1998-08-10 17:46:22 +00:00
										 |  |  | \method{readline()} method; in particular, ordinary file objects | 
					
						
							|  |  |  | qualify.  Instantiation reads headers from the input object up to a | 
					
						
							|  |  |  | delimiter line (normally a blank line) and stores them in the | 
					
						
							|  |  |  | instance. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This class can work with any input object that supports a | 
					
						
							|  |  |  | \method{readline()} method.  If the input object has seek and tell | 
					
						
							|  |  |  | capability, the \method{rewindbody()} method will work; also, illegal | 
					
						
							|  |  |  | lines will be pushed back onto the input stream.  If the input object | 
					
						
							|  |  |  | lacks seek but has an \method{unread()} method that can push back a | 
					
						
							|  |  |  | line of input, \class{Message} will use that to push back illegal | 
					
						
							|  |  |  | lines.  Thus this class can be used to parse messages coming from a | 
					
						
							|  |  |  | buffered stream. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The optional \var{seekable} argument is provided as a workaround for | 
					
						
							|  |  |  | certain stdio libraries in which \cfunction{tell()} discards buffered | 
					
						
							|  |  |  | data before discovering that the \cfunction{lseek()} system call | 
					
						
							|  |  |  | doesn't work.  For maximum portability, you should set the seekable | 
					
						
							|  |  |  | argument to zero to prevent that initial \method{tell()} when passing | 
					
						
							|  |  |  | in an unseekable object such as a a file object created from a socket | 
					
						
							|  |  |  | object. | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Input lines as read from the file may either be terminated by CR-LF or | 
					
						
							|  |  |  | by a single linefeed; a terminating CR-LF is replaced by a single | 
					
						
							|  |  |  | linefeed before the line is stored. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | All header matching is done independent of upper or lower case; | 
					
						
							| 
									
										
										
										
											1998-08-10 17:46:22 +00:00
										 |  |  | e.g.\ \code{\var{m}['From']}, \code{\var{m}['from']} and | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | \code{\var{m}['FROM']} all yield the same result. | 
					
						
							|  |  |  | \end{classdesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-16 22:27:40 +00:00
										 |  |  | \begin{classdesc}{AddressList}{field} | 
					
						
							| 
									
										
										
										
											1999-06-10 15:03:07 +00:00
										 |  |  | You may instantiate the \class{AddressList} helper class using a single | 
					
						
							| 
									
										
										
										
											1998-08-10 17:46:22 +00:00
										 |  |  | string parameter, a comma-separated list of \rfc{822} addresses to be | 
					
						
							|  |  |  | parsed.  (The parameter \code{None} yields an empty list.) | 
					
						
							| 
									
										
										
										
											1998-06-16 22:27:40 +00:00
										 |  |  | \end{classdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-06 21:23:53 +00:00
										 |  |  | \begin{funcdesc}{parsedate}{date} | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | Attempts to parse a date according to the rules in \rfc{822}. | 
					
						
							|  |  |  | however, some mailers don't follow that format as specified, so | 
					
						
							|  |  |  | \function{parsedate()} tries to guess correctly in such cases.  | 
					
						
							| 
									
										
										
										
											1998-02-09 19:16:20 +00:00
										 |  |  | \var{date} is a string containing an \rfc{822} date, such as  | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | \code{'Mon, 20 Nov 1995 19:12:08 -0500'}.  If it succeeds in parsing | 
					
						
							|  |  |  | the date, \function{parsedate()} returns a 9-tuple that can be passed | 
					
						
							|  |  |  | directly to \function{time.mktime()}; otherwise \code{None} will be | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | returned.  Note that fields 6, 7, and 8 of the result tuple are not | 
					
						
							|  |  |  | usable. | 
					
						
							| 
									
										
										
										
											1996-12-06 21:23:53 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{funcdesc}{parsedate_tz}{date} | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | Performs the same function as \function{parsedate()}, but returns | 
					
						
							|  |  |  | either \code{None} or a 10-tuple; the first 9 elements make up a tuple | 
					
						
							|  |  |  | that can be passed directly to \function{time.mktime()}, and the tenth | 
					
						
							|  |  |  | is the offset of the date's timezone from UTC (which is the official | 
					
						
							|  |  |  | term for Greenwich Mean Time).  (Note that the sign of the timezone | 
					
						
							|  |  |  | offset is the opposite of the sign of the \code{time.timezone} | 
					
						
							|  |  |  | variable for the same timezone; the latter variable follows the | 
					
						
							|  |  |  | \POSIX{} standard while this module follows \rfc{822}.)  If the input | 
					
						
							|  |  |  | string has no timezone, the last element of the tuple returned is | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \code{None}.  Note that fields 6, 7, and 8 of the result tuple are not | 
					
						
							|  |  |  | usable. | 
					
						
							| 
									
										
										
										
											1996-12-06 21:23:53 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-02-18 05:09:14 +00:00
										 |  |  | \begin{funcdesc}{mktime_tz}{tuple} | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | Turn a 10-tuple as returned by \function{parsedate_tz()} into a UTC | 
					
						
							|  |  |  | timestamp.  It the timezone item in the tuple is \code{None}, assume | 
					
						
							|  |  |  | local time.  Minor deficiency: this first interprets the first 8 | 
					
						
							|  |  |  | elements as a local time and then compensates for the timezone | 
					
						
							|  |  |  | difference; this may yield a slight error around daylight savings time | 
					
						
							| 
									
										
										
										
											1998-02-18 05:09:14 +00:00
										 |  |  | switch dates.  Not enough to worry about for common use. | 
					
						
							|  |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-28 18:11:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \begin{seealso} | 
					
						
							|  |  |  |   \seemodule{mailbox}{Classes to read various mailbox formats produced  | 
					
						
							|  |  |  |                       by end-user mail programs.} | 
					
						
							|  |  |  | \end{seealso} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-28 18:11:09 +00:00
										 |  |  | \subsection{Message Objects \label{message-objects}} | 
					
						
							| 
									
										
										
										
											1995-03-28 13:35:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | A \class{Message} instance has the following methods: | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{methoddesc}{rewindbody}{} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | Seek to the start of the message body.  This only works if the file | 
					
						
							|  |  |  | object is seekable. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-11 13:50:02 +00:00
										 |  |  | \begin{methoddesc}{isheader}{line} | 
					
						
							|  |  |  | Returns a line's canonicalized fieldname (the dictionary key that will | 
					
						
							| 
									
										
										
										
											1999-04-28 18:11:09 +00:00
										 |  |  | be used to index it) if the line is a legal \rfc{822} header; otherwise | 
					
						
							| 
									
										
										
										
											1998-06-11 13:50:02 +00:00
										 |  |  | returns None (implying that parsing should stop here and the line be | 
					
						
							|  |  |  | pushed back on the input stream).  It is sometimes useful to override | 
					
						
							|  |  |  | this method in a subclass. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-10 21:34:27 +00:00
										 |  |  | \begin{methoddesc}{islast}{line} | 
					
						
							|  |  |  | Return true if the given line is a delimiter on which Message should | 
					
						
							| 
									
										
										
										
											1998-06-11 13:50:02 +00:00
										 |  |  | stop.  The delimiter line is consumed, and the file object's read | 
					
						
							|  |  |  | location positioned immediately after it.  By default this method just | 
					
						
							|  |  |  | checks that the line is blank, but you can override it in a subclass. | 
					
						
							| 
									
										
										
										
											1998-06-10 21:34:27 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{iscomment}{line} | 
					
						
							|  |  |  | Return true if the given line should be ignored entirely, just skipped. | 
					
						
							|  |  |  | By default this is a stub that always returns false, but you can | 
					
						
							|  |  |  | override it in a subclass. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{methoddesc}{getallmatchingheaders}{name} | 
					
						
							| 
									
										
										
										
											1995-03-07 10:14:09 +00:00
										 |  |  | Return a list of lines consisting of all headers matching | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | \var{name}, if any.  Each physical line, whether it is a continuation | 
					
						
							|  |  |  | line or not, is a separate list item.  Return the empty list if no | 
					
						
							|  |  |  | header matches \var{name}. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{methoddesc}{getfirstmatchingheader}{name} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | Return a list of lines comprising the first header matching | 
					
						
							| 
									
										
										
										
											1999-04-28 18:11:09 +00:00
										 |  |  | \var{name}, and its continuation line(s), if any.  Return | 
					
						
							|  |  |  | \code{None} if there is no header matching \var{name}. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{methoddesc}{getrawheader}{name} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | Return a single string consisting of the text after the colon in the | 
					
						
							|  |  |  | first header matching \var{name}.  This includes leading whitespace, | 
					
						
							|  |  |  | the trailing linefeed, and internal linefeeds and whitespace if there | 
					
						
							|  |  |  | any continuation line(s) were present.  Return \code{None} if there is | 
					
						
							|  |  |  | no header matching \var{name}. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-10 21:34:27 +00:00
										 |  |  | \begin{methoddesc}{getheader}{name\optional{, default}} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | Like \code{getrawheader(\var{name})}, but strip leading and trailing | 
					
						
							| 
									
										
										
										
											1998-06-10 21:34:27 +00:00
										 |  |  | whitespace.  Internal whitespace is not stripped.  The optional | 
					
						
							|  |  |  | \var{default} argument can be used to specify a different default to | 
					
						
							|  |  |  | be returned when there is no header matching \var{name}. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{get}{name\optional{, default}} | 
					
						
							| 
									
										
										
										
											1998-08-10 17:46:22 +00:00
										 |  |  | An alias for \method{getheader()}, to make the interface more compatible  | 
					
						
							| 
									
										
										
										
											1998-06-10 21:34:27 +00:00
										 |  |  | with regular dictionaries. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{methoddesc}{getaddr}{name} | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | Return a pair \code{(\var{full name}, \var{email address})} parsed | 
					
						
							|  |  |  | from the string returned by \code{getheader(\var{name})}.  If no | 
					
						
							|  |  |  | header matching \var{name} exists, return \code{(None, None)}; | 
					
						
							|  |  |  | otherwise both the full name and the address are (possibly empty) | 
					
						
							|  |  |  | strings. | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | Example: If \var{m}'s first \code{From} header contains the string | 
					
						
							| 
									
										
										
										
											1995-03-17 16:07:09 +00:00
										 |  |  | \code{'jack@cwi.nl (Jack Jansen)'}, then | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | \code{m.getaddr('From')} will yield the pair | 
					
						
							| 
									
										
										
										
											1995-03-17 16:07:09 +00:00
										 |  |  | \code{('Jack Jansen', 'jack@cwi.nl')}. | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | If the header contained | 
					
						
							| 
									
										
										
										
											1995-03-17 16:07:09 +00:00
										 |  |  | \code{'Jack Jansen <jack@cwi.nl>'} instead, it would yield the | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | exact same result. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{methoddesc}{getaddrlist}{name} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | This is similar to \code{getaddr(\var{list})}, but parses a header | 
					
						
							| 
									
										
										
										
											1998-08-10 17:46:22 +00:00
										 |  |  | containing a list of email addresses (e.g.\ a \code{To} header) and | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | returns a list of \code{(\var{full name}, \var{email address})} pairs | 
					
						
							|  |  |  | (even if there was only one address in the header).  If there is no | 
					
						
							|  |  |  | header matching \var{name}, return an empty list. | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-14 21:26:54 +00:00
										 |  |  | If multiple headers exist that match the named header (e.g. if there | 
					
						
							|  |  |  | are several \code{Cc} headers), all are parsed for addresses.  Any | 
					
						
							|  |  |  | continuation lines the named headers contain are also parsed. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{methoddesc}{getdate}{name} | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | Retrieve a header using \method{getheader()} and parse it into a 9-tuple | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | compatible with \function{time.mktime()}; note that fields 6, 7, and 8  | 
					
						
							|  |  |  | are not usable.  If there is no header matching | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | \var{name}, or it is unparsable, return \code{None}. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Date parsing appears to be a black art, and not all mailers adhere to | 
					
						
							|  |  |  | the standard.  While it has been tested and found correct on a large | 
					
						
							|  |  |  | collection of email from many sources, it is still possible that this | 
					
						
							|  |  |  | function may occasionally yield an incorrect result. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{methoddesc}{getdate_tz}{name} | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | Retrieve a header using \method{getheader()} and parse it into a | 
					
						
							|  |  |  | 10-tuple; the first 9 elements will make a tuple compatible with | 
					
						
							|  |  |  | \function{time.mktime()}, and the 10th is a number giving the offset | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | of the date's timezone from UTC.  Note that fields 6, 7, and 8  | 
					
						
							|  |  |  | are not usable.  Similarly to \method{getdate()}, if | 
					
						
							| 
									
										
										
										
											1996-12-06 21:23:53 +00:00
										 |  |  | there is no header matching \var{name}, or it is unparsable, return | 
					
						
							|  |  |  | \code{None}.  | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											1996-12-06 21:23:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | \class{Message} instances also support a read-only mapping interface. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | In particular: \code{\var{m}[name]} is like | 
					
						
							|  |  |  | \code{\var{m}.getheader(name)} but raises \exception{KeyError} if | 
					
						
							|  |  |  | there is no matching header; and \code{len(\var{m})}, | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | \code{\var{m}.has_key(name)}, \code{\var{m}.keys()}, | 
					
						
							|  |  |  | \code{\var{m}.values()} and \code{\var{m}.items()} act as expected | 
					
						
							|  |  |  | (and consistently). | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-14 06:17:43 +00:00
										 |  |  | Finally, \class{Message} instances have two public instance variables: | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{memberdesc}{headers} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | A list containing the entire set of header lines, in the order in | 
					
						
							| 
									
										
										
										
											1998-06-16 22:27:40 +00:00
										 |  |  | which they were read (except that setitem calls may disturb this | 
					
						
							|  |  |  | order). Each line contains a trailing newline.  The | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | blank line terminating the headers is not contained in the list. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											1995-02-27 17:53:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \begin{memberdesc}{fp} | 
					
						
							| 
									
										
										
										
											1999-04-28 18:11:09 +00:00
										 |  |  | The file or file-like object passed at instantiation time.  This can | 
					
						
							|  |  |  | be used to read the message content. | 
					
						
							| 
									
										
										
										
											1998-04-04 06:19:30 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											1998-06-16 22:27:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-28 18:11:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \subsection{AddressList Objects \label{addresslist-objects}} | 
					
						
							| 
									
										
										
										
											1998-06-16 22:27:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | An \class{AddressList} instance has the following methods: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{__len__}{name} | 
					
						
							|  |  |  | Return the number of addresses in the address list. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{__str__}{name} | 
					
						
							|  |  |  | Return a canonicalized string representation of the address list. | 
					
						
							|  |  |  | Addresses are rendered in "name" <host@domain> form, comma-separated. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{__add__}{name} | 
					
						
							| 
									
										
										
										
											1999-06-10 15:03:07 +00:00
										 |  |  | Return an \class{AddressList} instance that contains all addresses in | 
					
						
							|  |  |  | both \class{AddressList} operands, with duplicates removed (set union). | 
					
						
							| 
									
										
										
										
											1998-06-16 22:27:40 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{__sub__}{name} | 
					
						
							| 
									
										
										
										
											1999-06-10 15:03:07 +00:00
										 |  |  | Return an \class{AddressList} instance that contains every address in the | 
					
						
							|  |  |  | left-hand \class{AddressList} operand that is not present in the right-hand | 
					
						
							| 
									
										
										
										
											1998-06-16 22:27:40 +00:00
										 |  |  | address operand (set difference). | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Finally, \class{AddressList} instances have one public instance variable: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{addresslist} | 
					
						
							|  |  |  | A list of tuple string pairs, one per address.  In each member, the | 
					
						
							|  |  |  | first is the canonicalized name part of the address, the second is the | 
					
						
							|  |  |  | route-address (@-separated host-domain pair). | 
					
						
							|  |  |  | \end{memberdesc} |