blob: 80f0acfd37131c313e07da847bfef7cfbf701366 [file] [log] [blame]
Barry Warsaw5e634632001-09-26 05:23:47 +00001\declaremodule{standard}{email.Utils}
2\modulesynopsis{Miscellaneous email package utilities.}
Barry Warsaw5e634632001-09-26 05:23:47 +00003
4There are several useful utilities provided with the \module{email}
5package.
6
7\begin{funcdesc}{quote}{str}
8Return a new string with backslashes in \var{str} replaced by two
Barry Warsaw5db478f2002-10-01 04:33:16 +00009backslashes, and double quotes replaced by backslash-double quote.
Barry Warsaw5e634632001-09-26 05:23:47 +000010\end{funcdesc}
11
12\begin{funcdesc}{unquote}{str}
13Return a new string which is an \emph{unquoted} version of \var{str}.
14If \var{str} ends and begins with double quotes, they are stripped
15off. Likewise if \var{str} ends and begins with angle brackets, they
16are stripped off.
17\end{funcdesc}
18
19\begin{funcdesc}{parseaddr}{address}
20Parse address -- which should be the value of some address-containing
Barry Warsawc5f8fe32001-09-26 22:21:52 +000021field such as \mailheader{To} or \mailheader{Cc} -- into its constituent
22\emph{realname} and \emph{email address} parts. Returns a tuple of that
Barry Warsaw5e634632001-09-26 05:23:47 +000023information, unless the parse fails, in which case a 2-tuple of
Barry Warsaw5b9da892002-10-01 01:05:52 +000024\code{('', '')} is returned.
Barry Warsaw5e634632001-09-26 05:23:47 +000025\end{funcdesc}
26
Barry Warsaw5b9da892002-10-01 01:05:52 +000027\begin{funcdesc}{formataddr}{pair}
Barry Warsaw5e634632001-09-26 05:23:47 +000028The inverse of \method{parseaddr()}, this takes a 2-tuple of the form
29\code{(realname, email_address)} and returns the string value suitable
Barry Warsawc5f8fe32001-09-26 22:21:52 +000030for a \mailheader{To} or \mailheader{Cc} header. If the first element of
Barry Warsaw5e634632001-09-26 05:23:47 +000031\var{pair} is false, then the second element is returned unmodified.
32\end{funcdesc}
33
34\begin{funcdesc}{getaddresses}{fieldvalues}
35This method returns a list of 2-tuples of the form returned by
36\code{parseaddr()}. \var{fieldvalues} is a sequence of header field
Barry Warsawc421ad42002-05-22 01:22:46 +000037values as might be returned by \method{Message.get_all()}. Here's a
Barry Warsaw5e634632001-09-26 05:23:47 +000038simple example that gets all the recipients of a message:
39
40\begin{verbatim}
41from email.Utils import getaddresses
42
Barry Warsawd05e0512001-10-22 20:53:45 +000043tos = msg.get_all('to', [])
44ccs = msg.get_all('cc', [])
45resent_tos = msg.get_all('resent-to', [])
46resent_ccs = msg.get_all('resent-cc', [])
Barry Warsaw5e634632001-09-26 05:23:47 +000047all_recipients = getaddresses(tos + ccs + resent_tos + resent_ccs)
48\end{verbatim}
49\end{funcdesc}
50
Barry Warsaw5e634632001-09-26 05:23:47 +000051\begin{funcdesc}{parsedate}{date}
52Attempts to parse a date according to the rules in \rfc{2822}.
53however, some mailers don't follow that format as specified, so
54\function{parsedate()} tries to guess correctly in such cases.
55\var{date} is a string containing an \rfc{2822} date, such as
56\code{"Mon, 20 Nov 1995 19:12:08 -0500"}. If it succeeds in parsing
57the date, \function{parsedate()} returns a 9-tuple that can be passed
58directly to \function{time.mktime()}; otherwise \code{None} will be
59returned. Note that fields 6, 7, and 8 of the result tuple are not
60usable.
61\end{funcdesc}
62
63\begin{funcdesc}{parsedate_tz}{date}
64Performs the same function as \function{parsedate()}, but returns
65either \code{None} or a 10-tuple; the first 9 elements make up a tuple
66that can be passed directly to \function{time.mktime()}, and the tenth
67is the offset of the date's timezone from UTC (which is the official
68term for Greenwich Mean Time)\footnote{Note that the sign of the timezone
69offset is the opposite of the sign of the \code{time.timezone}
70variable for the same timezone; the latter variable follows the
71\POSIX{} standard while this module follows \rfc{2822}.}. If the input
72string has no timezone, the last element of the tuple returned is
73\code{None}. Note that fields 6, 7, and 8 of the result tuple are not
74usable.
75\end{funcdesc}
76
77\begin{funcdesc}{mktime_tz}{tuple}
78Turn a 10-tuple as returned by \function{parsedate_tz()} into a UTC
79timestamp. It the timezone item in the tuple is \code{None}, assume
80local time. Minor deficiency: \function{mktime_tz()} interprets the
81first 8 elements of \var{tuple} as a local time and then compensates
82for the timezone difference. This may yield a slight error around
Andrew M. Kuchling43dc1fc2001-11-05 01:55:03 +000083changes in daylight savings time, though not worth worrying about for
Barry Warsaw5e634632001-09-26 05:23:47 +000084common use.
85\end{funcdesc}
86
Barry Warsaw3b0c82a2001-11-09 17:08:13 +000087\begin{funcdesc}{formatdate}{\optional{timeval\optional{, localtime}}}
Barry Warsaw5db478f2002-10-01 04:33:16 +000088Returns a date string as per \rfc{2822}, e.g.:
Barry Warsaw3b0c82a2001-11-09 17:08:13 +000089
90\begin{verbatim}
91Fri, 09 Nov 2001 01:08:47 -0000
92\end{verbatim}
93
94Optional \var{timeval} if given is a floating point time value as
95accepted by \function{time.gmtime()} and \function{time.localtime()},
96otherwise the current time is used.
97
Barry Warsaw5b9da892002-10-01 01:05:52 +000098Optional \var{localtime} is a flag that when \code{True}, interprets
Barry Warsaw3b0c82a2001-11-09 17:08:13 +000099\var{timeval}, and returns a date relative to the local timezone
100instead of UTC, properly taking daylight savings time into account.
Barry Warsaw5b9da892002-10-01 01:05:52 +0000101The default is \code{False} meaning UTC is used.
Barry Warsaw5e634632001-09-26 05:23:47 +0000102\end{funcdesc}
Barry Warsaw5b9da892002-10-01 01:05:52 +0000103
104\begin{funcdesc}{make_msgid}{\optional{idstring}}
105Returns a string suitable for an \rfc{2822}-compliant
106\mailheader{Message-ID} header. Optional \var{idstring} if given, is
107a string used to strengthen the uniqueness of the message id.
108\end{funcdesc}
109
110\begin{funcdesc}{decode_rfc2231}{s}
111Decode the string \var{s} according to \rfc{2231}.
112\end{funcdesc}
113
114\begin{funcdesc}{encode_rfc2231}{s\optional{, charset\optional{, language}}}
115Encode the string \var{s} according to \rfc{2231}. Optional
116\var{charset} and \var{language}, if given is the character set name
117and language name to use. If neither is given, \var{s} is returned
118as-is. If \var{charset} is given but \var{language} is not, the
119string is encoded using the empty string for \var{language}.
120\end{funcdesc}
121
122\begin{funcdesc}{decode_params}{params}
123Decode parameters list according to \rfc{2231}. \var{params} is a
124sequence of 2-tuples containing elements of the form
125\code{(content-type, string-value)}.
126\end{funcdesc}
127
128The following functions have been deprecated:
129
130\begin{funcdesc}{dump_address_pair}{pair}
131\deprecated{2.2.2}{Use \function{formataddr()} instead.}
132\end{funcdesc}
133
134\begin{funcdesc}{decode}{s}
135\deprecated{2.2.2}{Use \method{Header.decode_header()} instead.}
136\end{funcdesc}
137
138
139\begin{funcdesc}{encode}{s\optional{, charset\optional{, encoding}}}
140\deprecated{2.2.2}{Use \method{Header.encode()} instead.}
141\end{funcdesc}
142