blob: 2ebd0c13c3dd3a6172ba2518d1f81f1de1bd72e9 [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{imaplib} ---
Fred Drakeb7745501999-04-22 16:46:18 +00002 IMAP4 protocol client}
3
Fred Drakeb91e9341998-07-23 17:59:49 +00004\declaremodule{standard}{imaplib}
Fred Drakeb7745501999-04-22 16:46:18 +00005\modulesynopsis{IMAP4 protocol client (requires sockets).}
Piers Lauderd3c821e2002-11-22 05:47:39 +00006\moduleauthor{Piers Lauder}{piers@communitysolutions.com.au}
7\sectionauthor{Piers Lauder}{piers@communitysolutions.com.au}
Fred Drakeb91e9341998-07-23 17:59:49 +00008
Piers Lauderd3c821e2002-11-22 05:47:39 +00009% Based on HTML documentation by Piers Lauder <piers@communitysolutions.com.au>;
Fred Drake38e5d272000-04-03 20:13:55 +000010% converted by Fred L. Drake, Jr. <fdrake@acm.org>.
Eric S. Raymond5ac97952001-01-11 04:19:52 +000011% Revised by ESR, January 2000.
Piers Laudera4f83132002-03-08 01:53:24 +000012% Changes for IMAP4_SSL by Tino Lange <Tino.Lange@isg.de>, March 2002
Piers Lauderd3c821e2002-11-22 05:47:39 +000013% Changes for IMAP4_stream by Piers Lauder <piers@communitysolutions.com.au>, November 2002
Fred Drake38e5d272000-04-03 20:13:55 +000014
Fred Drakee5cf53a1998-04-11 05:02:45 +000015\indexii{IMAP4}{protocol}
Piers Laudera4f83132002-03-08 01:53:24 +000016\indexii{IMAP4_SSL}{protocol}
Piers Lauderd3c821e2002-11-22 05:47:39 +000017\indexii{IMAP4_stream}{protocol}
Fred Drake89de3141998-04-11 04:19:04 +000018
Piers Lauderd3c821e2002-11-22 05:47:39 +000019This module defines three classes, \class{IMAP4}, \class{IMAP4_SSL} and \class{IMAP4_stream}, which encapsulate a
Piers Laudera4f83132002-03-08 01:53:24 +000020connection to an IMAP4 server and implement a large subset of the
Eric S. Raymond5ac97952001-01-11 04:19:52 +000021IMAP4rev1 client protocol as defined in \rfc{2060}. It is backward
22compatible with IMAP4 (\rfc{1730}) servers, but note that the
23\samp{STATUS} command is not supported in IMAP4.
Fred Drake89de3141998-04-11 04:19:04 +000024
Piers Lauderd3c821e2002-11-22 05:47:39 +000025Three classes are provided by the \module{imaplib} module, \class{IMAP4} is the base class:
Fred Drake89de3141998-04-11 04:19:04 +000026
27\begin{classdesc}{IMAP4}{\optional{host\optional{, port}}}
28This class implements the actual IMAP4 protocol. The connection is
29created and protocol version (IMAP4 or IMAP4rev1) is determined when
30the instance is initialized.
31If \var{host} is not specified, \code{''} (the local host) is used.
32If \var{port} is omitted, the standard IMAP4 port (143) is used.
33\end{classdesc}
34
Piers Lauderd3c821e2002-11-22 05:47:39 +000035Three exceptions are defined as attributes of the \class{IMAP4} class:
Fred Drake89de3141998-04-11 04:19:04 +000036
37\begin{excdesc}{IMAP4.error}
38Exception raised on any errors. The reason for the exception is
39passed to the constructor as a string.
40\end{excdesc}
41
42\begin{excdesc}{IMAP4.abort}
43IMAP4 server errors cause this exception to be raised. This is a
44sub-class of \exception{IMAP4.error}. Note that closing the instance
45and instantiating a new one will usually allow recovery from this
46exception.
47\end{excdesc}
48
Guido van Rossum5f7a28c1999-12-13 23:29:39 +000049\begin{excdesc}{IMAP4.readonly}
Thomas Woutersf8316632000-07-16 19:01:10 +000050This exception is raised when a writable mailbox has its status changed by the server. This is a
Guido van Rossum5f7a28c1999-12-13 23:29:39 +000051sub-class of \exception{IMAP4.error}. Some other client now has write permission,
52and the mailbox will need to be re-opened to re-obtain write permission.
53\end{excdesc}
54
Piers Laudera4f83132002-03-08 01:53:24 +000055There's also a subclass for secure connections:
56
57\begin{classdesc}{IMAP4_SSL}{\optional{host\optional{, port\optional{, keyfile\optional{, certfile}}}}}
58This is a subclass derived from \class{IMAP4} that connects over an SSL encrypted socket
59(to use this class you need a socket module that was compiled with SSL support).
60If \var{host} is not specified, \code{''} (the local host) is used.
61If \var{port} is omitted, the standard IMAP4-over-SSL port (993) is used.
62\var{keyfile} and \var{certfile} are also optional - they can contain a PEM formatted
63private key and certificate chain file for the SSL connection.
64\end{classdesc}
65
Piers Lauderd3c821e2002-11-22 05:47:39 +000066The second subclass allows for connections created by a child process:
67
68\begin{classdesc}{IMAP4_stream}{command}
69This is a subclass derived from \class{IMAP4} that connects
70to the \code{stdin/stdout} file descriptors created by passing \var{command} to \code{os.popen2()}.
Neal Norwitze1497982003-01-02 15:32:00 +000071\versionadded{2.3}
Piers Lauderd3c821e2002-11-22 05:47:39 +000072\end{classdesc}
73
Fred Drake89de3141998-04-11 04:19:04 +000074The following utility functions are defined:
75
76\begin{funcdesc}{Internaldate2tuple}{datestr}
77 Converts an IMAP4 INTERNALDATE string to Coordinated Universal
Fred Drakeb7745501999-04-22 16:46:18 +000078 Time. Returns a \refmodule{time} module tuple.
Fred Drake89de3141998-04-11 04:19:04 +000079\end{funcdesc}
80
81\begin{funcdesc}{Int2AP}{num}
82 Converts an integer into a string representation using characters
83 from the set [\code{A} .. \code{P}].
84\end{funcdesc}
85
86\begin{funcdesc}{ParseFlags}{flagstr}
87 Converts an IMAP4 \samp{FLAGS} response to a tuple of individual
88 flags.
89\end{funcdesc}
90
91\begin{funcdesc}{Time2Internaldate}{date_time}
Fred Drakeb7745501999-04-22 16:46:18 +000092 Converts a \refmodule{time} module tuple to an IMAP4
Fred Drake89de3141998-04-11 04:19:04 +000093 \samp{INTERNALDATE} representation. Returns a string in the form:
94 \code{"DD-Mmm-YYYY HH:MM:SS +HHMM"} (including double-quotes).
95\end{funcdesc}
96
97
Eric S. Raymond5ac97952001-01-11 04:19:52 +000098Note that IMAP4 message numbers change as the mailbox changes; in
99particular, after an \samp{EXPUNGE} command performs deletions the
100remaining messages are renumbered. So it is highly advisable to use
101UIDs instead, with the UID command.
Fred Drake363d67c1999-07-07 13:42:56 +0000102
103At the end of the module, there is a test section that contains a more
104extensive example of usage.
105
106\begin{seealso}
Fred Drake37f15741999-11-10 16:21:37 +0000107 \seetext{Documents describing the protocol, and sources and binaries
108 for servers implementing it, can all be found at the
109 University of Washington's \emph{IMAP Information Center}
110 (\url{http://www.cac.washington.edu/imap/}).}
Fred Drake363d67c1999-07-07 13:42:56 +0000111\end{seealso}
112
113
114\subsection{IMAP4 Objects \label{imap4-objects}}
Fred Drake89de3141998-04-11 04:19:04 +0000115
116All IMAP4rev1 commands are represented by methods of the same name,
117either upper-case or lower-case.
118
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000119All arguments to commands are converted to strings, except for
Fred Draked16b5ab1999-12-13 23:34:42 +0000120\samp{AUTHENTICATE}, and the last argument to \samp{APPEND} which is
121passed as an IMAP4 literal. If necessary (the string contains IMAP4
122protocol-sensitive characters and isn't enclosed with either
123parentheses or double quotes) each string is quoted. However, the
124\var{password} argument to the \samp{LOGIN} command is always quoted.
Fred Drake99d707a2000-05-26 04:08:37 +0000125If you want to avoid having an argument string quoted
126(eg: the \var{flags} argument to \samp{STORE}) then enclose the string in
127parentheses (eg: \code{r'(\e Deleted)'}).
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000128
Fred Drakeb7745501999-04-22 16:46:18 +0000129Each command returns a tuple: \code{(\var{type}, [\var{data},
130...])} where \var{type} is usually \code{'OK'} or \code{'NO'},
Fred Drake89de3141998-04-11 04:19:04 +0000131and \var{data} is either the text from the command response, or
Piers Lauderd3c821e2002-11-22 05:47:39 +0000132mandated results from the command. Each \var{data}
133is either a string, or a tuple. If a tuple, then the first part
134is the header of the response, and the second part contains
135the data (ie: 'literal' value).
Fred Drake89de3141998-04-11 04:19:04 +0000136
137An \class{IMAP4} instance has the following methods:
138
139
140\begin{methoddesc}{append}{mailbox, flags, date_time, message}
141 Append message to named mailbox.
142\end{methoddesc}
143
144\begin{methoddesc}{authenticate}{func}
145 Authenticate command --- requires response processing. This is
146 currently unimplemented, and raises an exception.
147\end{methoddesc}
148
149\begin{methoddesc}{check}{}
150 Checkpoint mailbox on server.
151\end{methoddesc}
152
153\begin{methoddesc}{close}{}
154 Close currently selected mailbox. Deleted messages are removed from
155 writable mailbox. This is the recommended command before
156 \samp{LOGOUT}.
157\end{methoddesc}
158
159\begin{methoddesc}{copy}{message_set, new_mailbox}
160 Copy \var{message_set} messages onto end of \var{new_mailbox}.
161\end{methoddesc}
162
163\begin{methoddesc}{create}{mailbox}
164 Create new mailbox named \var{mailbox}.
165\end{methoddesc}
166
167\begin{methoddesc}{delete}{mailbox}
168 Delete old mailbox named \var{mailbox}.
169\end{methoddesc}
170
171\begin{methoddesc}{expunge}{}
172 Permanently remove deleted items from selected mailbox. Generates an
173 \samp{EXPUNGE} response for each deleted message. Returned data
174 contains a list of \samp{EXPUNGE} message numbers in order
175 received.
176\end{methoddesc}
177
178\begin{methoddesc}{fetch}{message_set, message_parts}
Fred Drake99d707a2000-05-26 04:08:37 +0000179 Fetch (parts of) messages. \var{message_parts} should be
180 a string of message part names enclosed within parentheses,
181 eg: \samp{"(UID BODY[TEXT])"}. Returned data are tuples
182 of message part envelope and data.
Fred Drake89de3141998-04-11 04:19:04 +0000183\end{methoddesc}
184
Piers Laudera3a16682001-07-20 11:04:19 +0000185\begin{methoddesc}{getacl}{mailbox}
186 Get the \samp{ACL}s for \var{mailbox}.
187 The method is non-standard, but is supported by the \samp{Cyrus} server.
188\end{methoddesc}
189
Piers Lauder3fca2912002-06-17 07:07:20 +0000190\begin{methoddesc}{getquota}{root}
191 Get the \samp{quota} \var{root}'s resource usage and limits.
192 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000193\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000194\end{methoddesc}
195
196\begin{methoddesc}{getquotaroot}{mailbox}
197 Get the list of \samp{quota} \samp{roots} for the named \var{mailbox}.
198 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000199\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000200\end{methoddesc}
201
Fred Drakee5cf53a1998-04-11 05:02:45 +0000202\begin{methoddesc}{list}{\optional{directory\optional{, pattern}}}
203 List mailbox names in \var{directory} matching
204 \var{pattern}. \var{directory} defaults to the top-level mail
205 folder, and \var{pattern} defaults to match anything. Returned data
206 contains a list of \samp{LIST} responses.
Fred Drake89de3141998-04-11 04:19:04 +0000207\end{methoddesc}
208
209\begin{methoddesc}{login}{user, password}
210 Identify the client using a plaintext password.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000211 The \var{password} will be quoted.
Fred Drake89de3141998-04-11 04:19:04 +0000212\end{methoddesc}
213
Piers Lauderd3c821e2002-11-22 05:47:39 +0000214\begin{methoddesc}{login_cram_md5}{user, password}
215 Force use of \samp{CRAM-MD5} authentication when identifying the client to protect the password.
216 Will only work if the server \samp{CAPABILITY} response includes the phrase \samp{AUTH=CRAM-MD5}.
Neal Norwitze1497982003-01-02 15:32:00 +0000217\versionadded{2.3}
Piers Lauderd3c821e2002-11-22 05:47:39 +0000218\end{methoddesc}
219
Fred Drake89de3141998-04-11 04:19:04 +0000220\begin{methoddesc}{logout}{}
221 Shutdown connection to server. Returns server \samp{BYE} response.
222\end{methoddesc}
223
Fred Drakee5cf53a1998-04-11 05:02:45 +0000224\begin{methoddesc}{lsub}{\optional{directory\optional{, pattern}}}
225 List subscribed mailbox names in directory matching pattern.
226 \var{directory} defaults to the top level directory and
227 \var{pattern} defaults to match any mailbox.
228 Returned data are tuples of message part envelope and data.
Fred Drake89de3141998-04-11 04:19:04 +0000229\end{methoddesc}
230
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000231\begin{methoddesc}{noop}{}
Fred Draked16b5ab1999-12-13 23:34:42 +0000232 Send \samp{NOOP} to server.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000233\end{methoddesc}
234
235\begin{methoddesc}{open}{host, port}
236 Opens socket to \var{port} at \var{host}.
Piers Laudera3a16682001-07-20 11:04:19 +0000237 The connection objects established by this method
Piers Lauder3fca2912002-06-17 07:07:20 +0000238 will be used in the \code{read}, \code{readline}, \code{send}, and \code{shutdown} methods.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000239 You may override this method.
240\end{methoddesc}
241
242\begin{methoddesc}{partial}{message_num, message_part, start, length}
243 Fetch truncated part of a message.
244 Returned data is a tuple of message part envelope and data.
245\end{methoddesc}
246
Piers Lauderd3c821e2002-11-22 05:47:39 +0000247\begin{methoddesc}{proxyauth}{user}
248 Assume authentication as \var{user}.
249 Allows an authorised administrator to proxy into any user's mailbox.
Neal Norwitze1497982003-01-02 15:32:00 +0000250\versionadded{2.3}
Piers Lauderd3c821e2002-11-22 05:47:39 +0000251\end{methoddesc}
252
Piers Laudera3a16682001-07-20 11:04:19 +0000253\begin{methoddesc}{read}{size}
254 Reads \var{size} bytes from the remote server.
255 You may override this method.
256\end{methoddesc}
257
258\begin{methoddesc}{readline}{}
259 Reads one line from the remote server.
260 You may override this method.
261\end{methoddesc}
262
Fred Drake89de3141998-04-11 04:19:04 +0000263\begin{methoddesc}{recent}{}
264 Prompt server for an update. Returned data is \code{None} if no new
265 messages, else value of \samp{RECENT} response.
266\end{methoddesc}
267
268\begin{methoddesc}{rename}{oldmailbox, newmailbox}
269 Rename mailbox named \var{oldmailbox} to \var{newmailbox}.
270\end{methoddesc}
271
272\begin{methoddesc}{response}{code}
273 Return data for response \var{code} if received, or
274 \code{None}. Returns the given code, instead of the usual type.
275\end{methoddesc}
276
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000277\begin{methoddesc}{search}{charset, criterion\optional{, ...}}
Fred Drake99d707a2000-05-26 04:08:37 +0000278 Search mailbox for matching messages. Returned data contains a space
279 separated list of matching message numbers. \var{charset} may be
280 \code{None}, in which case no \samp{CHARSET} will be specified in the
281 request to the server. The IMAP protocol requires that at least one
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000282 criterion be specified; an exception will be raised when the server
Fred Drake99d707a2000-05-26 04:08:37 +0000283 returns an error.
284
285 Example:
286
287\begin{verbatim}
288# M is a connected IMAP4 instance...
289msgnums = M.search(None, 'FROM', '"LDJ"')
290
291# or:
292msgnums = M.search(None, '(FROM "LDJ")')
293\end{verbatim}
Fred Drake89de3141998-04-11 04:19:04 +0000294\end{methoddesc}
295
296\begin{methoddesc}{select}{\optional{mailbox\optional{, readonly}}}
297 Select a mailbox. Returned data is the count of messages in
298 \var{mailbox} (\samp{EXISTS} response). The default \var{mailbox}
299 is \code{'INBOX'}. If the \var{readonly} flag is set, modifications
300 to the mailbox are not allowed.
301\end{methoddesc}
302
Piers Lauder3fca2912002-06-17 07:07:20 +0000303\begin{methoddesc}{send}{data}
304 Sends \code{data} to the remote server.
305 You may override this method.
306\end{methoddesc}
307
Piers Laudera3a16682001-07-20 11:04:19 +0000308\begin{methoddesc}{setacl}{mailbox, who, what}
309 Set an \samp{ACL} for \var{mailbox}.
310 The method is non-standard, but is supported by the \samp{Cyrus} server.
311\end{methoddesc}
312
Piers Lauder3fca2912002-06-17 07:07:20 +0000313\begin{methoddesc}{setquota}{root, limits}
314 Set the \samp{quota} \var{root}'s resource \var{limits}.
315 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000316\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000317\end{methoddesc}
318
Piers Laudera3a16682001-07-20 11:04:19 +0000319\begin{methoddesc}{shutdown}{}
320 Close connection established in \code{open}.
321 You may override this method.
322\end{methoddesc}
323
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000324\begin{methoddesc}{socket}{}
Piers Laudera3a16682001-07-20 11:04:19 +0000325 Returns socket instance used to connect to server.
326\end{methoddesc}
327
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000328\begin{methoddesc}{sort}{sort_criteria, charset, search_criterion\optional{, ...}}
Piers Laudera3a16682001-07-20 11:04:19 +0000329 The \code{sort} command is a variant of \code{search} with sorting semantics for
330 the results. Returned data contains a space
331 separated list of matching message numbers.
332
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000333 Sort has two arguments before the \var{search_criterion}
Piers Laudera3a16682001-07-20 11:04:19 +0000334 argument(s); a parenthesized list of \var{sort_criteria}, and the searching \var{charset}.
335 Note that unlike \code{search}, the searching \var{charset} argument is mandatory.
336 There is also a \code{uid sort} command which corresponds to \code{sort} the way
337 that \code{uid search} corresponds to \code{search}.
338 The \code{sort} command first searches the mailbox for messages that
339 match the given searching criteria using the charset argument for
340 the interpretation of strings in the searching criteria. It then
341 returns the numbers of matching messages.
342
343 This is an \samp{IMAP4rev1} extension command.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000344\end{methoddesc}
345
Fred Drake89de3141998-04-11 04:19:04 +0000346\begin{methoddesc}{status}{mailbox, names}
347 Request named status conditions for \var{mailbox}.
348\end{methoddesc}
349
350\begin{methoddesc}{store}{message_set, command, flag_list}
351 Alters flag dispositions for messages in mailbox.
352\end{methoddesc}
353
354\begin{methoddesc}{subscribe}{mailbox}
355 Subscribe to new mailbox.
356\end{methoddesc}
357
Martin v. Löwisd8921372003-11-10 06:44:44 +0000358\begin{methoddesc}{thread}{threading_algorithm, charset, search_criterion\optional{, ...}}
359 The \code{thread} command is a variant of \code{search} with threading semantics for
360 the results. Returned data contains a space
361 separated list of thread members.
362
363 Thread members consist of zero or more messages numbers, delimited by spaces,
364 indicating successive parent and child.
365
366 Thread has two arguments before the \var{search_criterion}
367 argument(s); a \var{threading_algorithm}, and the searching \var{charset}.
368 Note that unlike \code{search}, the searching \var{charset} argument is mandatory.
369 There is also a \code{uid thread} command which corresponds to \code{thread} the way
370 that \code{uid search} corresponds to \code{search}.
371 The \code{thread} command first searches the mailbox for messages that
372 match the given searching criteria using the charset argument for
373 the interpretation of strings in the searching criteria. It thren
374 returns the matching messages threaded according to the specified
375 threading algorithm.
376
377 This is an \samp{IMAP4rev1} extension command. \versionadded{2.4}
378\end{methoddesc}
379
Fred Drake99d707a2000-05-26 04:08:37 +0000380\begin{methoddesc}{uid}{command, arg\optional{, ...}}
Fred Drake89de3141998-04-11 04:19:04 +0000381 Execute command args with messages identified by UID, rather than
Fred Drake99d707a2000-05-26 04:08:37 +0000382 message number. Returns response appropriate to command. At least
383 one argument must be supplied; if none are provided, the server will
384 return an error and an exception will be raised.
Fred Drake89de3141998-04-11 04:19:04 +0000385\end{methoddesc}
386
387\begin{methoddesc}{unsubscribe}{mailbox}
388 Unsubscribe from old mailbox.
389\end{methoddesc}
390
Fred Drake99d707a2000-05-26 04:08:37 +0000391\begin{methoddesc}{xatom}{name\optional{, arg\optional{, ...}}}
Fred Drake89de3141998-04-11 04:19:04 +0000392 Allow simple extension commands notified by server in
393 \samp{CAPABILITY} response.
394\end{methoddesc}
395
396
Piers Laudera4f83132002-03-08 01:53:24 +0000397Instances of \class{IMAP4_SSL} have just one additional method:
398
399\begin{methoddesc}{ssl}{}
400 Returns SSLObject instance used for the secure connection with the server.
401\end{methoddesc}
402
403
Fred Drake8f6b9581998-04-11 15:11:55 +0000404The following attributes are defined on instances of \class{IMAP4}:
Fred Drake89de3141998-04-11 04:19:04 +0000405
Fred Drake8f6b9581998-04-11 15:11:55 +0000406
407\begin{memberdesc}{PROTOCOL_VERSION}
Fred Drakeb7745501999-04-22 16:46:18 +0000408The most recent supported protocol in the
409\samp{CAPABILITY} response from the server.
Fred Drake8f6b9581998-04-11 15:11:55 +0000410\end{memberdesc}
411
412\begin{memberdesc}{debug}
413Integer value to control debugging output. The initialize value is
414taken from the module variable \code{Debug}. Values greater than
415three trace each command.
416\end{memberdesc}
Fred Drake89de3141998-04-11 04:19:04 +0000417
418
Fred Drake363d67c1999-07-07 13:42:56 +0000419\subsection{IMAP4 Example \label{imap4-example}}
Fred Drake89de3141998-04-11 04:19:04 +0000420
421Here is a minimal example (without error checking) that opens a
422mailbox and retrieves and prints all messages:
423
424\begin{verbatim}
Piers Laudera3a16682001-07-20 11:04:19 +0000425import getpass, imaplib
Fred Drake363d67c1999-07-07 13:42:56 +0000426
Fred Drake89de3141998-04-11 04:19:04 +0000427M = imaplib.IMAP4()
Fred Drake363d67c1999-07-07 13:42:56 +0000428M.login(getpass.getuser(), getpass.getpass())
429M.select()
430typ, data = M.search(None, 'ALL')
Piers Laudera3a16682001-07-20 11:04:19 +0000431for num in data[0].split():
Fred Drake363d67c1999-07-07 13:42:56 +0000432 typ, data = M.fetch(num, '(RFC822)')
Fred Drake89de3141998-04-11 04:19:04 +0000433 print 'Message %s\n%s\n' % (num, data[0][1])
Fred Drake363d67c1999-07-07 13:42:56 +0000434M.logout()
Fred Drake89de3141998-04-11 04:19:04 +0000435\end{verbatim}