blob: 6f09551342f435d92768525d8a8ca0d1586e97b9 [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
Fred Drake63a5d0b2004-07-30 19:12:38 +00009% Based on HTML documentation by Piers Lauder
10% <piers@communitysolutions.com.au>;
Fred Drake38e5d272000-04-03 20:13:55 +000011% converted by Fred L. Drake, Jr. <fdrake@acm.org>.
Eric S. Raymond5ac97952001-01-11 04:19:52 +000012% Revised by ESR, January 2000.
Piers Laudera4f83132002-03-08 01:53:24 +000013% Changes for IMAP4_SSL by Tino Lange <Tino.Lange@isg.de>, March 2002
Fred Drake63a5d0b2004-07-30 19:12:38 +000014% Changes for IMAP4_stream by Piers Lauder
15% <piers@communitysolutions.com.au>, November 2002
Fred Drake38e5d272000-04-03 20:13:55 +000016
Fred Drakee5cf53a1998-04-11 05:02:45 +000017\indexii{IMAP4}{protocol}
Piers Laudera4f83132002-03-08 01:53:24 +000018\indexii{IMAP4_SSL}{protocol}
Piers Lauderd3c821e2002-11-22 05:47:39 +000019\indexii{IMAP4_stream}{protocol}
Fred Drake89de3141998-04-11 04:19:04 +000020
Fred Drake63a5d0b2004-07-30 19:12:38 +000021This module defines three classes, \class{IMAP4}, \class{IMAP4_SSL}
22and \class{IMAP4_stream}, which encapsulate a
Piers Laudera4f83132002-03-08 01:53:24 +000023connection to an IMAP4 server and implement a large subset of the
Eric S. Raymond5ac97952001-01-11 04:19:52 +000024IMAP4rev1 client protocol as defined in \rfc{2060}. It is backward
25compatible with IMAP4 (\rfc{1730}) servers, but note that the
26\samp{STATUS} command is not supported in IMAP4.
Fred Drake89de3141998-04-11 04:19:04 +000027
Fred Drake63a5d0b2004-07-30 19:12:38 +000028Three classes are provided by the \module{imaplib} module,
29\class{IMAP4} is the base class:
Fred Drake89de3141998-04-11 04:19:04 +000030
31\begin{classdesc}{IMAP4}{\optional{host\optional{, port}}}
32This class implements the actual IMAP4 protocol. The connection is
33created and protocol version (IMAP4 or IMAP4rev1) is determined when
34the instance is initialized.
35If \var{host} is not specified, \code{''} (the local host) is used.
36If \var{port} is omitted, the standard IMAP4 port (143) is used.
37\end{classdesc}
38
Piers Lauderd3c821e2002-11-22 05:47:39 +000039Three exceptions are defined as attributes of the \class{IMAP4} class:
Fred Drake89de3141998-04-11 04:19:04 +000040
41\begin{excdesc}{IMAP4.error}
42Exception raised on any errors. The reason for the exception is
43passed to the constructor as a string.
44\end{excdesc}
45
46\begin{excdesc}{IMAP4.abort}
47IMAP4 server errors cause this exception to be raised. This is a
48sub-class of \exception{IMAP4.error}. Note that closing the instance
49and instantiating a new one will usually allow recovery from this
50exception.
51\end{excdesc}
52
Guido van Rossum5f7a28c1999-12-13 23:29:39 +000053\begin{excdesc}{IMAP4.readonly}
Fred Drake63a5d0b2004-07-30 19:12:38 +000054This exception is raised when a writable mailbox has its status
55changed by the server. This is a sub-class of
56\exception{IMAP4.error}. Some other client now has write permission,
57and the mailbox will need to be re-opened to re-obtain write
58permission.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +000059\end{excdesc}
60
Piers Laudera4f83132002-03-08 01:53:24 +000061There's also a subclass for secure connections:
62
Fred Drake63a5d0b2004-07-30 19:12:38 +000063\begin{classdesc}{IMAP4_SSL}{\optional{host\optional{, port\optional{,
64 keyfile\optional{, certfile}}}}}
65This is a subclass derived from \class{IMAP4} that connects over an
66SSL encrypted socket (to use this class you need a socket module that
67was compiled with SSL support). If \var{host} is not specified,
68\code{''} (the local host) is used. If \var{port} is omitted, the
69standard IMAP4-over-SSL port (993) is used. \var{keyfile} and
70\var{certfile} are also optional - they can contain a PEM formatted
71private key and certificate chain file for the SSL connection.
Piers Laudera4f83132002-03-08 01:53:24 +000072\end{classdesc}
73
Piers Lauderd3c821e2002-11-22 05:47:39 +000074The second subclass allows for connections created by a child process:
75
76\begin{classdesc}{IMAP4_stream}{command}
77This is a subclass derived from \class{IMAP4} that connects
Fred Drake63a5d0b2004-07-30 19:12:38 +000078to the \code{stdin/stdout} file descriptors created by passing
79\var{command} to \code{os.popen2()}.
Neal Norwitze1497982003-01-02 15:32:00 +000080\versionadded{2.3}
Piers Lauderd3c821e2002-11-22 05:47:39 +000081\end{classdesc}
82
Fred Drake89de3141998-04-11 04:19:04 +000083The following utility functions are defined:
84
85\begin{funcdesc}{Internaldate2tuple}{datestr}
86 Converts an IMAP4 INTERNALDATE string to Coordinated Universal
Fred Drakeb7745501999-04-22 16:46:18 +000087 Time. Returns a \refmodule{time} module tuple.
Fred Drake89de3141998-04-11 04:19:04 +000088\end{funcdesc}
89
90\begin{funcdesc}{Int2AP}{num}
91 Converts an integer into a string representation using characters
92 from the set [\code{A} .. \code{P}].
93\end{funcdesc}
94
95\begin{funcdesc}{ParseFlags}{flagstr}
96 Converts an IMAP4 \samp{FLAGS} response to a tuple of individual
97 flags.
98\end{funcdesc}
99
100\begin{funcdesc}{Time2Internaldate}{date_time}
Fred Drakeb7745501999-04-22 16:46:18 +0000101 Converts a \refmodule{time} module tuple to an IMAP4
Fred Drake89de3141998-04-11 04:19:04 +0000102 \samp{INTERNALDATE} representation. Returns a string in the form:
103 \code{"DD-Mmm-YYYY HH:MM:SS +HHMM"} (including double-quotes).
104\end{funcdesc}
105
106
Eric S. Raymond5ac97952001-01-11 04:19:52 +0000107Note that IMAP4 message numbers change as the mailbox changes; in
108particular, after an \samp{EXPUNGE} command performs deletions the
109remaining messages are renumbered. So it is highly advisable to use
110UIDs instead, with the UID command.
Fred Drake363d67c1999-07-07 13:42:56 +0000111
112At the end of the module, there is a test section that contains a more
113extensive example of usage.
114
115\begin{seealso}
Fred Drake37f15741999-11-10 16:21:37 +0000116 \seetext{Documents describing the protocol, and sources and binaries
117 for servers implementing it, can all be found at the
118 University of Washington's \emph{IMAP Information Center}
119 (\url{http://www.cac.washington.edu/imap/}).}
Fred Drake363d67c1999-07-07 13:42:56 +0000120\end{seealso}
121
122
123\subsection{IMAP4 Objects \label{imap4-objects}}
Fred Drake89de3141998-04-11 04:19:04 +0000124
125All IMAP4rev1 commands are represented by methods of the same name,
126either upper-case or lower-case.
127
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000128All arguments to commands are converted to strings, except for
Fred Draked16b5ab1999-12-13 23:34:42 +0000129\samp{AUTHENTICATE}, and the last argument to \samp{APPEND} which is
130passed as an IMAP4 literal. If necessary (the string contains IMAP4
131protocol-sensitive characters and isn't enclosed with either
132parentheses or double quotes) each string is quoted. However, the
133\var{password} argument to the \samp{LOGIN} command is always quoted.
Fred Drake99d707a2000-05-26 04:08:37 +0000134If you want to avoid having an argument string quoted
135(eg: the \var{flags} argument to \samp{STORE}) then enclose the string in
136parentheses (eg: \code{r'(\e Deleted)'}).
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000137
Fred Drakeb7745501999-04-22 16:46:18 +0000138Each command returns a tuple: \code{(\var{type}, [\var{data},
139...])} where \var{type} is usually \code{'OK'} or \code{'NO'},
Fred Drake89de3141998-04-11 04:19:04 +0000140and \var{data} is either the text from the command response, or
Piers Lauderd3c821e2002-11-22 05:47:39 +0000141mandated results from the command. Each \var{data}
142is either a string, or a tuple. If a tuple, then the first part
143is the header of the response, and the second part contains
144the data (ie: 'literal' value).
Fred Drake89de3141998-04-11 04:19:04 +0000145
Fred Drake5e37d792005-01-19 04:44:07 +0000146The \var{message_set} options to commands below is a string specifying one
147or more messages to be acted upon. It may be a simple message number
148(\code{'1'}), a range of message numbers (\code{'2:4'}), or a group of
149non-contiguous ranges separated by commas (\code{'1:3,6:9'}). A range
150can contain an asterisk to indicate an infinite upper bound
151(\code{'3:*'}).
152
Fred Drake89de3141998-04-11 04:19:04 +0000153An \class{IMAP4} instance has the following methods:
154
155
156\begin{methoddesc}{append}{mailbox, flags, date_time, message}
Piers Lauder8bc81fc2004-05-20 12:12:58 +0000157 Append \var{message} to named mailbox.
Fred Drake89de3141998-04-11 04:19:04 +0000158\end{methoddesc}
159
Piers Lauder8bc81fc2004-05-20 12:12:58 +0000160\begin{methoddesc}{authenticate}{mechanism, authobject}
161 Authenticate command --- requires response processing.
162
Fred Drake63a5d0b2004-07-30 19:12:38 +0000163 \var{mechanism} specifies which authentication mechanism is to be
164 used - it should appear in the instance variable \code{capabilities}
165 in the form \code{AUTH=mechanism}.
Piers Lauder8bc81fc2004-05-20 12:12:58 +0000166
167 \var{authobject} must be a callable object:
168
169\begin{verbatim}
170data = authobject(response)
171\end{verbatim}
172
173 It will be called to process server continuation responses.
174 It should return \code{data} that will be encoded and sent to server.
175 It should return \code{None} if the client abort response \samp{*} should
176 be sent instead.
Fred Drake89de3141998-04-11 04:19:04 +0000177\end{methoddesc}
178
179\begin{methoddesc}{check}{}
180 Checkpoint mailbox on server.
181\end{methoddesc}
182
183\begin{methoddesc}{close}{}
184 Close currently selected mailbox. Deleted messages are removed from
185 writable mailbox. This is the recommended command before
186 \samp{LOGOUT}.
187\end{methoddesc}
188
189\begin{methoddesc}{copy}{message_set, new_mailbox}
190 Copy \var{message_set} messages onto end of \var{new_mailbox}.
191\end{methoddesc}
192
193\begin{methoddesc}{create}{mailbox}
194 Create new mailbox named \var{mailbox}.
195\end{methoddesc}
196
197\begin{methoddesc}{delete}{mailbox}
198 Delete old mailbox named \var{mailbox}.
199\end{methoddesc}
200
Martin v. Löwis7b9190b2004-07-27 05:07:19 +0000201\begin{methoddesc}{deleteacl}{mailbox, who}
202 Delete the ACLs (remove any rights) set for who on mailbox.
Neal Norwitzbee41742004-07-28 02:34:12 +0000203\versionadded{2.4}
Martin v. Löwis7b9190b2004-07-27 05:07:19 +0000204\end{methoddesc}
205
Fred Drake89de3141998-04-11 04:19:04 +0000206\begin{methoddesc}{expunge}{}
207 Permanently remove deleted items from selected mailbox. Generates an
208 \samp{EXPUNGE} response for each deleted message. Returned data
209 contains a list of \samp{EXPUNGE} message numbers in order
210 received.
211\end{methoddesc}
212
213\begin{methoddesc}{fetch}{message_set, message_parts}
Fred Drake99d707a2000-05-26 04:08:37 +0000214 Fetch (parts of) messages. \var{message_parts} should be
215 a string of message part names enclosed within parentheses,
216 eg: \samp{"(UID BODY[TEXT])"}. Returned data are tuples
217 of message part envelope and data.
Fred Drake89de3141998-04-11 04:19:04 +0000218\end{methoddesc}
219
Piers Laudera3a16682001-07-20 11:04:19 +0000220\begin{methoddesc}{getacl}{mailbox}
221 Get the \samp{ACL}s for \var{mailbox}.
222 The method is non-standard, but is supported by the \samp{Cyrus} server.
223\end{methoddesc}
224
Piers Lauderd80ef022005-06-01 23:50:52 +0000225\begin{methoddesc}{getannotation}{mailbox, entry, attribute}
226 Retrieve the specified \samp{ANNOTATION}s for \var{mailbox}.
227 The method is non-standard, but is supported by the \samp{Cyrus} server.
228\end{methoddesc}
229
Piers Lauder3fca2912002-06-17 07:07:20 +0000230\begin{methoddesc}{getquota}{root}
231 Get the \samp{quota} \var{root}'s resource usage and limits.
232 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000233\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000234\end{methoddesc}
235
236\begin{methoddesc}{getquotaroot}{mailbox}
237 Get the list of \samp{quota} \samp{roots} for the named \var{mailbox}.
238 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000239\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000240\end{methoddesc}
241
Fred Drakee5cf53a1998-04-11 05:02:45 +0000242\begin{methoddesc}{list}{\optional{directory\optional{, pattern}}}
243 List mailbox names in \var{directory} matching
244 \var{pattern}. \var{directory} defaults to the top-level mail
245 folder, and \var{pattern} defaults to match anything. Returned data
246 contains a list of \samp{LIST} responses.
Fred Drake89de3141998-04-11 04:19:04 +0000247\end{methoddesc}
248
249\begin{methoddesc}{login}{user, password}
250 Identify the client using a plaintext password.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000251 The \var{password} will be quoted.
Fred Drake89de3141998-04-11 04:19:04 +0000252\end{methoddesc}
253
Piers Lauderd3c821e2002-11-22 05:47:39 +0000254\begin{methoddesc}{login_cram_md5}{user, password}
Fred Drake63a5d0b2004-07-30 19:12:38 +0000255 Force use of \samp{CRAM-MD5} authentication when identifying the
256 client to protect the password. Will only work if the server
257 \samp{CAPABILITY} response includes the phrase \samp{AUTH=CRAM-MD5}.
Neal Norwitze1497982003-01-02 15:32:00 +0000258\versionadded{2.3}
Piers Lauderd3c821e2002-11-22 05:47:39 +0000259\end{methoddesc}
260
Fred Drake89de3141998-04-11 04:19:04 +0000261\begin{methoddesc}{logout}{}
262 Shutdown connection to server. Returns server \samp{BYE} response.
263\end{methoddesc}
264
Fred Drakee5cf53a1998-04-11 05:02:45 +0000265\begin{methoddesc}{lsub}{\optional{directory\optional{, pattern}}}
266 List subscribed mailbox names in directory matching pattern.
267 \var{directory} defaults to the top level directory and
268 \var{pattern} defaults to match any mailbox.
269 Returned data are tuples of message part envelope and data.
Fred Drake89de3141998-04-11 04:19:04 +0000270\end{methoddesc}
271
Martin v. Löwis479b7a72004-07-30 16:09:19 +0000272\begin{methoddesc}{myrights}{mailbox}
Martin v. Löwis7b9190b2004-07-27 05:07:19 +0000273 Show my ACLs for a mailbox (i.e. the rights that I have on mailbox).
Neal Norwitzbee41742004-07-28 02:34:12 +0000274\versionadded{2.4}
Martin v. Löwis7b9190b2004-07-27 05:07:19 +0000275\end{methoddesc}
276
Piers Lauder8bc81fc2004-05-20 12:12:58 +0000277\begin{methoddesc}{namespace}{}
278 Returns IMAP namespaces as defined in RFC2342.
279\versionadded{2.3}
280\end{methoddesc}
281
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000282\begin{methoddesc}{noop}{}
Fred Draked16b5ab1999-12-13 23:34:42 +0000283 Send \samp{NOOP} to server.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000284\end{methoddesc}
285
286\begin{methoddesc}{open}{host, port}
287 Opens socket to \var{port} at \var{host}.
Piers Laudera3a16682001-07-20 11:04:19 +0000288 The connection objects established by this method
Fred Drake63a5d0b2004-07-30 19:12:38 +0000289 will be used in the \code{read}, \code{readline}, \code{send}, and
290 \code{shutdown} methods.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000291 You may override this method.
292\end{methoddesc}
293
294\begin{methoddesc}{partial}{message_num, message_part, start, length}
295 Fetch truncated part of a message.
296 Returned data is a tuple of message part envelope and data.
297\end{methoddesc}
298
Piers Lauderd3c821e2002-11-22 05:47:39 +0000299\begin{methoddesc}{proxyauth}{user}
300 Assume authentication as \var{user}.
301 Allows an authorised administrator to proxy into any user's mailbox.
Neal Norwitze1497982003-01-02 15:32:00 +0000302\versionadded{2.3}
Piers Lauderd3c821e2002-11-22 05:47:39 +0000303\end{methoddesc}
304
Piers Laudera3a16682001-07-20 11:04:19 +0000305\begin{methoddesc}{read}{size}
306 Reads \var{size} bytes from the remote server.
307 You may override this method.
308\end{methoddesc}
309
310\begin{methoddesc}{readline}{}
311 Reads one line from the remote server.
312 You may override this method.
313\end{methoddesc}
314
Fred Drake89de3141998-04-11 04:19:04 +0000315\begin{methoddesc}{recent}{}
316 Prompt server for an update. Returned data is \code{None} if no new
317 messages, else value of \samp{RECENT} response.
318\end{methoddesc}
319
320\begin{methoddesc}{rename}{oldmailbox, newmailbox}
321 Rename mailbox named \var{oldmailbox} to \var{newmailbox}.
322\end{methoddesc}
323
324\begin{methoddesc}{response}{code}
325 Return data for response \var{code} if received, or
326 \code{None}. Returns the given code, instead of the usual type.
327\end{methoddesc}
328
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000329\begin{methoddesc}{search}{charset, criterion\optional{, ...}}
Neal Norwitz02cfa0b2005-09-23 04:26:24 +0000330 Search mailbox for matching messages. \var{charset} may be
Fred Drake99d707a2000-05-26 04:08:37 +0000331 \code{None}, in which case no \samp{CHARSET} will be specified in the
332 request to the server. The IMAP protocol requires that at least one
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000333 criterion be specified; an exception will be raised when the server
Fred Drake99d707a2000-05-26 04:08:37 +0000334 returns an error.
335
336 Example:
337
338\begin{verbatim}
339# M is a connected IMAP4 instance...
Neal Norwitz02cfa0b2005-09-23 04:26:24 +0000340typ, msgnums = M.search(None, 'FROM', '"LDJ"')
Fred Drake99d707a2000-05-26 04:08:37 +0000341
342# or:
Neal Norwitz02cfa0b2005-09-23 04:26:24 +0000343typ, msgnums = M.search(None, '(FROM "LDJ")')
Fred Drake99d707a2000-05-26 04:08:37 +0000344\end{verbatim}
Fred Drake89de3141998-04-11 04:19:04 +0000345\end{methoddesc}
346
347\begin{methoddesc}{select}{\optional{mailbox\optional{, readonly}}}
348 Select a mailbox. Returned data is the count of messages in
349 \var{mailbox} (\samp{EXISTS} response). The default \var{mailbox}
350 is \code{'INBOX'}. If the \var{readonly} flag is set, modifications
351 to the mailbox are not allowed.
352\end{methoddesc}
353
Piers Lauder3fca2912002-06-17 07:07:20 +0000354\begin{methoddesc}{send}{data}
355 Sends \code{data} to the remote server.
356 You may override this method.
357\end{methoddesc}
358
Piers Laudera3a16682001-07-20 11:04:19 +0000359\begin{methoddesc}{setacl}{mailbox, who, what}
360 Set an \samp{ACL} for \var{mailbox}.
361 The method is non-standard, but is supported by the \samp{Cyrus} server.
362\end{methoddesc}
363
Piers Lauderd80ef022005-06-01 23:50:52 +0000364\begin{methoddesc}{setannotation}{mailbox, entry, attribute\optional{, ...}}
365 Set \samp{ANNOTATION}s for \var{mailbox}.
366 The method is non-standard, but is supported by the \samp{Cyrus} server.
367\end{methoddesc}
368
Piers Lauder3fca2912002-06-17 07:07:20 +0000369\begin{methoddesc}{setquota}{root, limits}
370 Set the \samp{quota} \var{root}'s resource \var{limits}.
371 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000372\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000373\end{methoddesc}
374
Piers Laudera3a16682001-07-20 11:04:19 +0000375\begin{methoddesc}{shutdown}{}
376 Close connection established in \code{open}.
377 You may override this method.
378\end{methoddesc}
379
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000380\begin{methoddesc}{socket}{}
Piers Laudera3a16682001-07-20 11:04:19 +0000381 Returns socket instance used to connect to server.
382\end{methoddesc}
383
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000384\begin{methoddesc}{sort}{sort_criteria, charset, search_criterion\optional{, ...}}
Fred Drake63a5d0b2004-07-30 19:12:38 +0000385 The \code{sort} command is a variant of \code{search} with sorting
386 semantics for the results. Returned data contains a space separated
387 list of matching message numbers.
Piers Laudera3a16682001-07-20 11:04:19 +0000388
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000389 Sort has two arguments before the \var{search_criterion}
Fred Drake63a5d0b2004-07-30 19:12:38 +0000390 argument(s); a parenthesized list of \var{sort_criteria}, and the
391 searching \var{charset}. Note that unlike \code{search}, the
392 searching \var{charset} argument is mandatory. There is also a
393 \code{uid sort} command which corresponds to \code{sort} the way
394 that \code{uid search} corresponds to \code{search}. The
395 \code{sort} command first searches the mailbox for messages that
Piers Laudera3a16682001-07-20 11:04:19 +0000396 match the given searching criteria using the charset argument for
397 the interpretation of strings in the searching criteria. It then
398 returns the numbers of matching messages.
399
400 This is an \samp{IMAP4rev1} extension command.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000401\end{methoddesc}
402
Fred Drake89de3141998-04-11 04:19:04 +0000403\begin{methoddesc}{status}{mailbox, names}
404 Request named status conditions for \var{mailbox}.
405\end{methoddesc}
406
407\begin{methoddesc}{store}{message_set, command, flag_list}
Fred Drake5e37d792005-01-19 04:44:07 +0000408 Alters flag dispositions for messages in mailbox. \var{command} is
409 specified by section 6.4.6 of \rfc{2060} as being one of "FLAGS", "+FLAGS",
410 or "-FLAGS", optionally with a suffix of ".SILENT".
411
412 For example, to set the delete flag on all messages:
413
414\begin{verbatim}
415typ, data = M.search(None, 'ALL')
416for num in data[0].split():
417 M.store(num, '+FLAGS', '\\Deleted')
418M.expunge()
419\end{verbatim}
Fred Drake89de3141998-04-11 04:19:04 +0000420\end{methoddesc}
421
422\begin{methoddesc}{subscribe}{mailbox}
423 Subscribe to new mailbox.
424\end{methoddesc}
425
Fred Drake63a5d0b2004-07-30 19:12:38 +0000426\begin{methoddesc}{thread}{threading_algorithm, charset,
427 search_criterion\optional{, ...}}
428 The \code{thread} command is a variant of \code{search} with
429 threading semantics for the results. Returned data contains a space
Martin v. Löwisd8921372003-11-10 06:44:44 +0000430 separated list of thread members.
431
Fred Drake63a5d0b2004-07-30 19:12:38 +0000432 Thread members consist of zero or more messages numbers, delimited
433 by spaces, indicating successive parent and child.
Martin v. Löwisd8921372003-11-10 06:44:44 +0000434
435 Thread has two arguments before the \var{search_criterion}
Fred Drake63a5d0b2004-07-30 19:12:38 +0000436 argument(s); a \var{threading_algorithm}, and the searching
437 \var{charset}. Note that unlike \code{search}, the searching
438 \var{charset} argument is mandatory. There is also a \code{uid
439 thread} command which corresponds to \code{thread} the way that
440 \code{uid search} corresponds to \code{search}. The \code{thread}
441 command first searches the mailbox for messages that match the given
442 searching criteria using the charset argument for the interpretation
Raymond Hettinger68804312005-01-01 00:28:46 +0000443 of strings in the searching criteria. It then returns the matching
Fred Drake63a5d0b2004-07-30 19:12:38 +0000444 messages threaded according to the specified threading algorithm.
Martin v. Löwisd8921372003-11-10 06:44:44 +0000445
446 This is an \samp{IMAP4rev1} extension command. \versionadded{2.4}
447\end{methoddesc}
448
Fred Drake99d707a2000-05-26 04:08:37 +0000449\begin{methoddesc}{uid}{command, arg\optional{, ...}}
Fred Drake89de3141998-04-11 04:19:04 +0000450 Execute command args with messages identified by UID, rather than
Fred Drake99d707a2000-05-26 04:08:37 +0000451 message number. Returns response appropriate to command. At least
452 one argument must be supplied; if none are provided, the server will
453 return an error and an exception will be raised.
Fred Drake89de3141998-04-11 04:19:04 +0000454\end{methoddesc}
455
456\begin{methoddesc}{unsubscribe}{mailbox}
457 Unsubscribe from old mailbox.
458\end{methoddesc}
459
Fred Drake99d707a2000-05-26 04:08:37 +0000460\begin{methoddesc}{xatom}{name\optional{, arg\optional{, ...}}}
Fred Drake89de3141998-04-11 04:19:04 +0000461 Allow simple extension commands notified by server in
462 \samp{CAPABILITY} response.
463\end{methoddesc}
464
465
Piers Laudera4f83132002-03-08 01:53:24 +0000466Instances of \class{IMAP4_SSL} have just one additional method:
467
468\begin{methoddesc}{ssl}{}
469 Returns SSLObject instance used for the secure connection with the server.
470\end{methoddesc}
471
472
Fred Drake8f6b9581998-04-11 15:11:55 +0000473The following attributes are defined on instances of \class{IMAP4}:
Fred Drake89de3141998-04-11 04:19:04 +0000474
Fred Drake8f6b9581998-04-11 15:11:55 +0000475
476\begin{memberdesc}{PROTOCOL_VERSION}
Fred Drakeb7745501999-04-22 16:46:18 +0000477The most recent supported protocol in the
478\samp{CAPABILITY} response from the server.
Fred Drake8f6b9581998-04-11 15:11:55 +0000479\end{memberdesc}
480
481\begin{memberdesc}{debug}
482Integer value to control debugging output. The initialize value is
483taken from the module variable \code{Debug}. Values greater than
484three trace each command.
485\end{memberdesc}
Fred Drake89de3141998-04-11 04:19:04 +0000486
487
Fred Drake363d67c1999-07-07 13:42:56 +0000488\subsection{IMAP4 Example \label{imap4-example}}
Fred Drake89de3141998-04-11 04:19:04 +0000489
490Here is a minimal example (without error checking) that opens a
491mailbox and retrieves and prints all messages:
492
493\begin{verbatim}
Piers Laudera3a16682001-07-20 11:04:19 +0000494import getpass, imaplib
Fred Drake363d67c1999-07-07 13:42:56 +0000495
Fred Drake89de3141998-04-11 04:19:04 +0000496M = imaplib.IMAP4()
Fred Drake363d67c1999-07-07 13:42:56 +0000497M.login(getpass.getuser(), getpass.getpass())
498M.select()
499typ, data = M.search(None, 'ALL')
Piers Laudera3a16682001-07-20 11:04:19 +0000500for num in data[0].split():
Fred Drake363d67c1999-07-07 13:42:56 +0000501 typ, data = M.fetch(num, '(RFC822)')
Fred Drake89de3141998-04-11 04:19:04 +0000502 print 'Message %s\n%s\n' % (num, data[0][1])
Fred Drake5e37d792005-01-19 04:44:07 +0000503M.close()
Fred Drake363d67c1999-07-07 13:42:56 +0000504M.logout()
Fred Drake89de3141998-04-11 04:19:04 +0000505\end{verbatim}