Fred Drake | 3a0351c | 1998-04-04 07:23:21 +0000 | [diff] [blame] | 1 | \section{Standard Module \module{rfc822}} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 2 | \label{module-rfc822} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 3 | \stmodindex{rfc822} |
| 4 | |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 5 | |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 6 | This module defines a class, \class{Message}, which represents a |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 7 | collection of ``email headers'' as defined by the Internet standard |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 8 | \rfc{822}. It is used in various contexts, usually to read such |
| 9 | headers from a file. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 10 | |
Fred Drake | 5ca9033 | 1997-12-16 15:19:47 +0000 | [diff] [blame] | 11 | Note that there's a separate module to read \UNIX{}, MH, and MMDF |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 12 | style mailbox files: \module{mailbox}\refstmodindex{mailbox}. |
Guido van Rossum | 067a2ac | 1997-06-02 17:30:03 +0000 | [diff] [blame] | 13 | |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 14 | \begin{classdesc}{Message}{file\optional{, seekable}} |
Guido van Rossum | 1299100 | 1998-06-10 21:34:27 +0000 | [diff] [blame] | 15 | A \class{Message} instance is instantiated with an input object as |
| 16 | parameter. Message relies only on the input object having a |
| 17 | \code{readline} method; in particular, ordinary file objects qualify. |
| 18 | Instantiation reads headers from the input object up to a delimiter |
| 19 | line (normally a blank line) and stores them in the instance. |
| 20 | |
Guido van Rossum | 444d0f8 | 1998-06-11 13:50:02 +0000 | [diff] [blame] | 21 | This class can work with any input object that supports a readline |
| 22 | method. If the input object has seek and tell capability, the |
| 23 | \code{rewindbody} method will work; also, illegal lines will be pushed back |
| 24 | onto the input stream. If the input object lacks seek but has an |
| 25 | \code{unread} method that can push back a line of input, Message will use |
| 26 | that to push back illegal lines. Thus this class can be used to parse |
| 27 | messages coming from a buffered stream. |
Guido van Rossum | 1299100 | 1998-06-10 21:34:27 +0000 | [diff] [blame] | 28 | |
| 29 | The optional \code{seekable} argument is provided as a workaround for |
| 30 | certain stdio libraries in which tell() discards buffered data before |
| 31 | discovering that the \code{lseek()} system call doesn't work. For |
| 32 | maximum portability, you should set the seekable argument to zero to |
| 33 | prevent that initial \code{tell} when passing in an unseekable object |
| 34 | such as a a file object created from a socket object. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 35 | |
| 36 | Input lines as read from the file may either be terminated by CR-LF or |
| 37 | by a single linefeed; a terminating CR-LF is replaced by a single |
| 38 | linefeed before the line is stored. |
| 39 | |
| 40 | All header matching is done independent of upper or lower case; |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 41 | e.g. \code{\var{m}['From']}, \code{\var{m}['from']} and |
| 42 | \code{\var{m}['FROM']} all yield the same result. |
| 43 | \end{classdesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 44 | |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 45 | \begin{funcdesc}{parsedate}{date} |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 46 | Attempts to parse a date according to the rules in \rfc{822}. |
| 47 | however, some mailers don't follow that format as specified, so |
| 48 | \function{parsedate()} tries to guess correctly in such cases. |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 49 | \var{date} is a string containing an \rfc{822} date, such as |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 50 | \code{'Mon, 20 Nov 1995 19:12:08 -0500'}. If it succeeds in parsing |
| 51 | the date, \function{parsedate()} returns a 9-tuple that can be passed |
| 52 | directly to \function{time.mktime()}; otherwise \code{None} will be |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 53 | returned. |
| 54 | \end{funcdesc} |
| 55 | |
| 56 | \begin{funcdesc}{parsedate_tz}{date} |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 57 | Performs the same function as \function{parsedate()}, but returns |
| 58 | either \code{None} or a 10-tuple; the first 9 elements make up a tuple |
| 59 | that can be passed directly to \function{time.mktime()}, and the tenth |
| 60 | is the offset of the date's timezone from UTC (which is the official |
| 61 | term for Greenwich Mean Time). (Note that the sign of the timezone |
| 62 | offset is the opposite of the sign of the \code{time.timezone} |
| 63 | variable for the same timezone; the latter variable follows the |
| 64 | \POSIX{} standard while this module follows \rfc{822}.) If the input |
| 65 | string has no timezone, the last element of the tuple returned is |
| 66 | \code{None}. |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 67 | \end{funcdesc} |
| 68 | |
Guido van Rossum | 8cf94e6 | 1998-02-18 05:09:14 +0000 | [diff] [blame] | 69 | \begin{funcdesc}{mktime_tz}{tuple} |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 70 | Turn a 10-tuple as returned by \function{parsedate_tz()} into a UTC |
| 71 | timestamp. It the timezone item in the tuple is \code{None}, assume |
| 72 | local time. Minor deficiency: this first interprets the first 8 |
| 73 | elements as a local time and then compensates for the timezone |
| 74 | difference; this may yield a slight error around daylight savings time |
Guido van Rossum | 8cf94e6 | 1998-02-18 05:09:14 +0000 | [diff] [blame] | 75 | switch dates. Not enough to worry about for common use. |
| 76 | \end{funcdesc} |
| 77 | |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 78 | \subsection{Message Objects} |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 79 | \label{message-objects} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 80 | |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 81 | A \class{Message} instance has the following methods: |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 82 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 83 | \begin{methoddesc}{rewindbody}{} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 84 | Seek to the start of the message body. This only works if the file |
| 85 | object is seekable. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 86 | \end{methoddesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 87 | |
Guido van Rossum | 444d0f8 | 1998-06-11 13:50:02 +0000 | [diff] [blame] | 88 | \begin{methoddesc}{isheader}{line} |
| 89 | Returns a line's canonicalized fieldname (the dictionary key that will |
| 90 | be used to index it) if the line is a legal RFC822 header; otherwise |
| 91 | returns None (implying that parsing should stop here and the line be |
| 92 | pushed back on the input stream). It is sometimes useful to override |
| 93 | this method in a subclass. |
| 94 | \end{methoddesc} |
| 95 | |
Guido van Rossum | 1299100 | 1998-06-10 21:34:27 +0000 | [diff] [blame] | 96 | \begin{methoddesc}{islast}{line} |
| 97 | Return true if the given line is a delimiter on which Message should |
Guido van Rossum | 444d0f8 | 1998-06-11 13:50:02 +0000 | [diff] [blame] | 98 | stop. The delimiter line is consumed, and the file object's read |
| 99 | location positioned immediately after it. By default this method just |
| 100 | checks that the line is blank, but you can override it in a subclass. |
Guido van Rossum | 1299100 | 1998-06-10 21:34:27 +0000 | [diff] [blame] | 101 | \end{methoddesc} |
| 102 | |
| 103 | \begin{methoddesc}{iscomment}{line} |
| 104 | Return true if the given line should be ignored entirely, just skipped. |
| 105 | By default this is a stub that always returns false, but you can |
| 106 | override it in a subclass. |
| 107 | \end{methoddesc} |
| 108 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 109 | \begin{methoddesc}{getallmatchingheaders}{name} |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 110 | Return a list of lines consisting of all headers matching |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 111 | \var{name}, if any. Each physical line, whether it is a continuation |
| 112 | line or not, is a separate list item. Return the empty list if no |
| 113 | header matches \var{name}. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 114 | \end{methoddesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 115 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 116 | \begin{methoddesc}{getfirstmatchingheader}{name} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 117 | Return a list of lines comprising the first header matching |
| 118 | \var{name}, and its continuation line(s), if any. Return \code{None} |
| 119 | if there is no header matching \var{name}. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 120 | \end{methoddesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 121 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 122 | \begin{methoddesc}{getrawheader}{name} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 123 | Return a single string consisting of the text after the colon in the |
| 124 | first header matching \var{name}. This includes leading whitespace, |
| 125 | the trailing linefeed, and internal linefeeds and whitespace if there |
| 126 | any continuation line(s) were present. Return \code{None} if there is |
| 127 | no header matching \var{name}. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 128 | \end{methoddesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 129 | |
Guido van Rossum | 1299100 | 1998-06-10 21:34:27 +0000 | [diff] [blame] | 130 | \begin{methoddesc}{getheader}{name\optional{, default}} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 131 | Like \code{getrawheader(\var{name})}, but strip leading and trailing |
Guido van Rossum | 1299100 | 1998-06-10 21:34:27 +0000 | [diff] [blame] | 132 | whitespace. Internal whitespace is not stripped. The optional |
| 133 | \var{default} argument can be used to specify a different default to |
| 134 | be returned when there is no header matching \var{name}. |
| 135 | \end{methoddesc} |
| 136 | |
| 137 | \begin{methoddesc}{get}{name\optional{, default}} |
| 138 | An alias for \code{getheader()}, to make the interface more compatible |
| 139 | with regular dictionaries. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 140 | \end{methoddesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 141 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 142 | \begin{methoddesc}{getaddr}{name} |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 143 | Return a pair \code{(\var{full name}, \var{email address})} parsed |
| 144 | from the string returned by \code{getheader(\var{name})}. If no |
| 145 | header matching \var{name} exists, return \code{(None, None)}; |
| 146 | otherwise both the full name and the address are (possibly empty) |
| 147 | strings. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 148 | |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 149 | Example: If \var{m}'s first \code{From} header contains the string |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 150 | \code{'jack@cwi.nl (Jack Jansen)'}, then |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 151 | \code{m.getaddr('From')} will yield the pair |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 152 | \code{('Jack Jansen', 'jack@cwi.nl')}. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 153 | If the header contained |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 154 | \code{'Jack Jansen <jack@cwi.nl>'} instead, it would yield the |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 155 | exact same result. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 156 | \end{methoddesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 157 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 158 | \begin{methoddesc}{getaddrlist}{name} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 159 | This is similar to \code{getaddr(\var{list})}, but parses a header |
| 160 | containing a list of email addresses (e.g. a \code{To} header) and |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 161 | returns a list of \code{(\var{full name}, \var{email address})} pairs |
| 162 | (even if there was only one address in the header). If there is no |
| 163 | header matching \var{name}, return an empty list. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 164 | |
| 165 | XXX The current version of this function is not really correct. It |
| 166 | yields bogus results if a full name contains a comma. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 167 | \end{methoddesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 168 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 169 | \begin{methoddesc}{getdate}{name} |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 170 | Retrieve a header using \method{getheader()} and parse it into a 9-tuple |
| 171 | compatible with \function{time.mktime()}. If there is no header matching |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 172 | \var{name}, or it is unparsable, return \code{None}. |
| 173 | |
| 174 | Date parsing appears to be a black art, and not all mailers adhere to |
| 175 | the standard. While it has been tested and found correct on a large |
| 176 | collection of email from many sources, it is still possible that this |
| 177 | function may occasionally yield an incorrect result. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 178 | \end{methoddesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 179 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 180 | \begin{methoddesc}{getdate_tz}{name} |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 181 | Retrieve a header using \method{getheader()} and parse it into a |
| 182 | 10-tuple; the first 9 elements will make a tuple compatible with |
| 183 | \function{time.mktime()}, and the 10th is a number giving the offset |
| 184 | of the date's timezone from UTC. Similarly to \method{getdate()}, if |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 185 | there is no header matching \var{name}, or it is unparsable, return |
| 186 | \code{None}. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 187 | \end{methoddesc} |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 188 | |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 189 | \class{Message} instances also support a read-only mapping interface. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 190 | In particular: \code{\var{m}[name]} is like |
| 191 | \code{\var{m}.getheader(name)} but raises \exception{KeyError} if |
| 192 | there is no matching header; and \code{len(\var{m})}, |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 193 | \code{\var{m}.has_key(name)}, \code{\var{m}.keys()}, |
| 194 | \code{\var{m}.values()} and \code{\var{m}.items()} act as expected |
| 195 | (and consistently). |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 196 | |
Fred Drake | cdea8a3 | 1998-03-14 06:17:43 +0000 | [diff] [blame] | 197 | Finally, \class{Message} instances have two public instance variables: |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 198 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 199 | \begin{memberdesc}{headers} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 200 | A list containing the entire set of header lines, in the order in |
| 201 | which they were read. Each line contains a trailing newline. The |
| 202 | blank line terminating the headers is not contained in the list. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 203 | \end{memberdesc} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 204 | |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 205 | \begin{memberdesc}{fp} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 206 | The file object passed at instantiation time. |
Fred Drake | e14dde2 | 1998-04-04 06:19:30 +0000 | [diff] [blame] | 207 | \end{memberdesc} |