Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 1 | \section{Standard Module \sectcode{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 | \renewcommand{\indexsubitem}{(in module rfc822)} |
| 6 | |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 7 | This module defines a class, \code{Message}, which represents a |
| 8 | collection of ``email headers'' as defined by the Internet standard |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 9 | \rfc{822}. It is used in various contexts, usually to read such |
| 10 | headers from a file. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 11 | |
Fred Drake | 5ca9033 | 1997-12-16 15:19:47 +0000 | [diff] [blame] | 12 | Note that there's a separate module to read \UNIX{}, MH, and MMDF |
| 13 | style mailbox files: \code{mailbox}. |
| 14 | \refstmodindex{mailbox} |
Guido van Rossum | 067a2ac | 1997-06-02 17:30:03 +0000 | [diff] [blame] | 15 | |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 16 | A \code{Message} instance is instantiated with an open file object as |
Guido van Rossum | 067a2ac | 1997-06-02 17:30:03 +0000 | [diff] [blame] | 17 | parameter. The optional \code{seekable} parameter indicates if the |
| 18 | file object is seekable; the default value is 1 for true. |
| 19 | Instantiation reads headers from the file up to a blank line and |
| 20 | stores them in the instance; after instantiation, the file is |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 21 | positioned directly after the blank line that terminates the headers. |
| 22 | |
| 23 | Input lines as read from the file may either be terminated by CR-LF or |
| 24 | by a single linefeed; a terminating CR-LF is replaced by a single |
| 25 | linefeed before the line is stored. |
| 26 | |
| 27 | All header matching is done independent of upper or lower case; |
| 28 | e.g. \code{m['From']}, \code{m['from']} and \code{m['FROM']} all yield |
| 29 | the same result. |
| 30 | |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 31 | \begin{funcdesc}{parsedate}{date} |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 32 | Attempts to parse a date according to the rules in \rfc{822}. however, |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 33 | some mailers don't follow that format as specified, so |
| 34 | \code{parsedate()} tries to guess correctly in such cases. |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 35 | \var{date} is a string containing an \rfc{822} date, such as |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 36 | \code{"Mon, 20 Nov 1995 19:12:08 -0500"}. If it succeeds in parsing |
| 37 | the date, \code{parsedate()} returns a 9-tuple that can be passed |
| 38 | directly to \code{time.mktime()}; otherwise \code{None} will be |
| 39 | returned. |
| 40 | \end{funcdesc} |
| 41 | |
| 42 | \begin{funcdesc}{parsedate_tz}{date} |
| 43 | Performs the same function as \code{parsedate}, but returns either |
| 44 | \code{None} or a 10-tuple; the first 9 elements make up a tuple that |
| 45 | can be passed directly to \code{time.mktime()}, and the tenth is the |
| 46 | offset of the date's time zone from UTC (which is the official term |
| 47 | for Greenwich Mean Time). |
| 48 | \end{funcdesc} |
| 49 | |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 50 | \subsection{Message Objects} |
| 51 | |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 52 | A \code{Message} instance has the following methods: |
| 53 | |
| 54 | \begin{funcdesc}{rewindbody}{} |
| 55 | Seek to the start of the message body. This only works if the file |
| 56 | object is seekable. |
| 57 | \end{funcdesc} |
| 58 | |
| 59 | \begin{funcdesc}{getallmatchingheaders}{name} |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 60 | Return a list of lines consisting of all headers matching |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 61 | \var{name}, if any. Each physical line, whether it is a continuation |
| 62 | line or not, is a separate list item. Return the empty list if no |
| 63 | header matches \var{name}. |
| 64 | \end{funcdesc} |
| 65 | |
| 66 | \begin{funcdesc}{getfirstmatchingheader}{name} |
| 67 | Return a list of lines comprising the first header matching |
| 68 | \var{name}, and its continuation line(s), if any. Return \code{None} |
| 69 | if there is no header matching \var{name}. |
| 70 | \end{funcdesc} |
| 71 | |
| 72 | \begin{funcdesc}{getrawheader}{name} |
| 73 | Return a single string consisting of the text after the colon in the |
| 74 | first header matching \var{name}. This includes leading whitespace, |
| 75 | the trailing linefeed, and internal linefeeds and whitespace if there |
| 76 | any continuation line(s) were present. Return \code{None} if there is |
| 77 | no header matching \var{name}. |
| 78 | \end{funcdesc} |
| 79 | |
| 80 | \begin{funcdesc}{getheader}{name} |
| 81 | Like \code{getrawheader(\var{name})}, but strip leading and trailing |
| 82 | whitespace (but not internal whitespace). |
| 83 | \end{funcdesc} |
| 84 | |
| 85 | \begin{funcdesc}{getaddr}{name} |
| 86 | Return a pair (full name, email address) parsed from the string |
| 87 | returned by \code{getheader(\var{name})}. If no header matching |
| 88 | \var{name} exists, return \code{None, None}; otherwise both the full |
| 89 | name and the address are (possibly empty )strings. |
| 90 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 91 | Example: If \code{m}'s first \code{From} header contains the string\\ |
| 92 | \code{'jack@cwi.nl (Jack Jansen)'}, then |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 93 | \code{m.getaddr('From')} will yield the pair |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 94 | \code{('Jack Jansen', 'jack@cwi.nl')}. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 95 | If the header contained |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 96 | \code{'Jack Jansen <jack@cwi.nl>'} instead, it would yield the |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 97 | exact same result. |
| 98 | \end{funcdesc} |
| 99 | |
| 100 | \begin{funcdesc}{getaddrlist}{name} |
| 101 | This is similar to \code{getaddr(\var{list})}, but parses a header |
| 102 | containing a list of email addresses (e.g. a \code{To} header) and |
| 103 | returns a list of (full name, email address) pairs (even if there was |
| 104 | only one address in the header). If there is no header matching |
| 105 | \var{name}, return an empty list. |
| 106 | |
| 107 | XXX The current version of this function is not really correct. It |
| 108 | yields bogus results if a full name contains a comma. |
| 109 | \end{funcdesc} |
| 110 | |
| 111 | \begin{funcdesc}{getdate}{name} |
| 112 | Retrieve a header using \code{getheader} and parse it into a 9-tuple |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 113 | compatible with \code{time.mktime()}. If there is no header matching |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 114 | \var{name}, or it is unparsable, return \code{None}. |
| 115 | |
| 116 | Date parsing appears to be a black art, and not all mailers adhere to |
| 117 | the standard. While it has been tested and found correct on a large |
| 118 | collection of email from many sources, it is still possible that this |
| 119 | function may occasionally yield an incorrect result. |
| 120 | \end{funcdesc} |
| 121 | |
Guido van Rossum | 843e712 | 1996-12-06 21:23:53 +0000 | [diff] [blame] | 122 | \begin{funcdesc}{getdate_tz}{name} |
| 123 | Retrieve a header using \code{getheader} and parse it into a 10-tuple; |
| 124 | the first 9 elements will make a tuple compatible with |
| 125 | \code{time.mktime()}, and the 10th is a number giving the offset of |
| 126 | the date's time zone from UTC. Similarly to \code{getdate()}, if |
| 127 | there is no header matching \var{name}, or it is unparsable, return |
| 128 | \code{None}. |
| 129 | \end{funcdesc} |
| 130 | |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 131 | \code{Message} instances also support a read-only mapping interface. |
| 132 | In particular: \code{m[name]} is the same as \code{m.getheader(name)}; |
| 133 | and \code{len(m)}, \code{m.has_key(name)}, \code{m.keys()}, |
| 134 | \code{m.values()} and \code{m.items()} act as expected (and |
| 135 | consistently). |
| 136 | |
| 137 | Finally, \code{Message} instances have two public instance variables: |
| 138 | |
| 139 | \begin{datadesc}{headers} |
| 140 | A list containing the entire set of header lines, in the order in |
| 141 | which they were read. Each line contains a trailing newline. The |
| 142 | blank line terminating the headers is not contained in the list. |
| 143 | \end{datadesc} |
| 144 | |
| 145 | \begin{datadesc}{fp} |
| 146 | The file object passed at instantiation time. |
| 147 | \end{datadesc} |