blob: 57170268643e5343c5246bfc96e67068afd8e4fd [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}
Piers Lauder8bc81fc2004-05-20 12:12:58 +0000141 Append \var{message} to named mailbox.
Fred Drake89de3141998-04-11 04:19:04 +0000142\end{methoddesc}
143
Piers Lauder8bc81fc2004-05-20 12:12:58 +0000144\begin{methoddesc}{authenticate}{mechanism, authobject}
145 Authenticate command --- requires response processing.
146
147 \var{mechanism} specifies which authentication mechanism is to
148 be used - it should appear in the instance variable \code{capabilities} in the
149 form \code{AUTH=mechanism}.
150
151 \var{authobject} must be a callable object:
152
153\begin{verbatim}
154data = authobject(response)
155\end{verbatim}
156
157 It will be called to process server continuation responses.
158 It should return \code{data} that will be encoded and sent to server.
159 It should return \code{None} if the client abort response \samp{*} should
160 be sent instead.
Fred Drake89de3141998-04-11 04:19:04 +0000161\end{methoddesc}
162
163\begin{methoddesc}{check}{}
164 Checkpoint mailbox on server.
165\end{methoddesc}
166
167\begin{methoddesc}{close}{}
168 Close currently selected mailbox. Deleted messages are removed from
169 writable mailbox. This is the recommended command before
170 \samp{LOGOUT}.
171\end{methoddesc}
172
173\begin{methoddesc}{copy}{message_set, new_mailbox}
174 Copy \var{message_set} messages onto end of \var{new_mailbox}.
175\end{methoddesc}
176
177\begin{methoddesc}{create}{mailbox}
178 Create new mailbox named \var{mailbox}.
179\end{methoddesc}
180
181\begin{methoddesc}{delete}{mailbox}
182 Delete old mailbox named \var{mailbox}.
183\end{methoddesc}
184
Martin v. Löwis7b9190b2004-07-27 05:07:19 +0000185\begin{methoddesc}{deleteacl}{mailbox, who}
186 Delete the ACLs (remove any rights) set for who on mailbox.
187\end{methoddesc}
188
Fred Drake89de3141998-04-11 04:19:04 +0000189\begin{methoddesc}{expunge}{}
190 Permanently remove deleted items from selected mailbox. Generates an
191 \samp{EXPUNGE} response for each deleted message. Returned data
192 contains a list of \samp{EXPUNGE} message numbers in order
193 received.
194\end{methoddesc}
195
196\begin{methoddesc}{fetch}{message_set, message_parts}
Fred Drake99d707a2000-05-26 04:08:37 +0000197 Fetch (parts of) messages. \var{message_parts} should be
198 a string of message part names enclosed within parentheses,
199 eg: \samp{"(UID BODY[TEXT])"}. Returned data are tuples
200 of message part envelope and data.
Fred Drake89de3141998-04-11 04:19:04 +0000201\end{methoddesc}
202
Piers Laudera3a16682001-07-20 11:04:19 +0000203\begin{methoddesc}{getacl}{mailbox}
204 Get the \samp{ACL}s for \var{mailbox}.
205 The method is non-standard, but is supported by the \samp{Cyrus} server.
206\end{methoddesc}
207
Piers Lauder3fca2912002-06-17 07:07:20 +0000208\begin{methoddesc}{getquota}{root}
209 Get the \samp{quota} \var{root}'s resource usage and limits.
210 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000211\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000212\end{methoddesc}
213
214\begin{methoddesc}{getquotaroot}{mailbox}
215 Get the list of \samp{quota} \samp{roots} for the named \var{mailbox}.
216 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000217\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000218\end{methoddesc}
219
Fred Drakee5cf53a1998-04-11 05:02:45 +0000220\begin{methoddesc}{list}{\optional{directory\optional{, pattern}}}
221 List mailbox names in \var{directory} matching
222 \var{pattern}. \var{directory} defaults to the top-level mail
223 folder, and \var{pattern} defaults to match anything. Returned data
224 contains a list of \samp{LIST} responses.
Fred Drake89de3141998-04-11 04:19:04 +0000225\end{methoddesc}
226
227\begin{methoddesc}{login}{user, password}
228 Identify the client using a plaintext password.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000229 The \var{password} will be quoted.
Fred Drake89de3141998-04-11 04:19:04 +0000230\end{methoddesc}
231
Piers Lauderd3c821e2002-11-22 05:47:39 +0000232\begin{methoddesc}{login_cram_md5}{user, password}
233 Force use of \samp{CRAM-MD5} authentication when identifying the client to protect the password.
234 Will only work if the server \samp{CAPABILITY} response includes the phrase \samp{AUTH=CRAM-MD5}.
Neal Norwitze1497982003-01-02 15:32:00 +0000235\versionadded{2.3}
Piers Lauderd3c821e2002-11-22 05:47:39 +0000236\end{methoddesc}
237
Fred Drake89de3141998-04-11 04:19:04 +0000238\begin{methoddesc}{logout}{}
239 Shutdown connection to server. Returns server \samp{BYE} response.
240\end{methoddesc}
241
Fred Drakee5cf53a1998-04-11 05:02:45 +0000242\begin{methoddesc}{lsub}{\optional{directory\optional{, pattern}}}
243 List subscribed mailbox names in directory matching pattern.
244 \var{directory} defaults to the top level directory and
245 \var{pattern} defaults to match any mailbox.
246 Returned data are tuples of message part envelope and data.
Fred Drake89de3141998-04-11 04:19:04 +0000247\end{methoddesc}
248
Martin v. Löwis7b9190b2004-07-27 05:07:19 +0000249\begin{methoddes}{myrights}{mailbox}
250 Show my ACLs for a mailbox (i.e. the rights that I have on mailbox).
251\end{methoddesc}
252
Piers Lauder8bc81fc2004-05-20 12:12:58 +0000253\begin{methoddesc}{namespace}{}
254 Returns IMAP namespaces as defined in RFC2342.
255\versionadded{2.3}
256\end{methoddesc}
257
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000258\begin{methoddesc}{noop}{}
Fred Draked16b5ab1999-12-13 23:34:42 +0000259 Send \samp{NOOP} to server.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000260\end{methoddesc}
261
262\begin{methoddesc}{open}{host, port}
263 Opens socket to \var{port} at \var{host}.
Piers Laudera3a16682001-07-20 11:04:19 +0000264 The connection objects established by this method
Piers Lauder3fca2912002-06-17 07:07:20 +0000265 will be used in the \code{read}, \code{readline}, \code{send}, and \code{shutdown} methods.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000266 You may override this method.
267\end{methoddesc}
268
269\begin{methoddesc}{partial}{message_num, message_part, start, length}
270 Fetch truncated part of a message.
271 Returned data is a tuple of message part envelope and data.
272\end{methoddesc}
273
Piers Lauderd3c821e2002-11-22 05:47:39 +0000274\begin{methoddesc}{proxyauth}{user}
275 Assume authentication as \var{user}.
276 Allows an authorised administrator to proxy into any user's mailbox.
Neal Norwitze1497982003-01-02 15:32:00 +0000277\versionadded{2.3}
Piers Lauderd3c821e2002-11-22 05:47:39 +0000278\end{methoddesc}
279
Piers Laudera3a16682001-07-20 11:04:19 +0000280\begin{methoddesc}{read}{size}
281 Reads \var{size} bytes from the remote server.
282 You may override this method.
283\end{methoddesc}
284
285\begin{methoddesc}{readline}{}
286 Reads one line from the remote server.
287 You may override this method.
288\end{methoddesc}
289
Fred Drake89de3141998-04-11 04:19:04 +0000290\begin{methoddesc}{recent}{}
291 Prompt server for an update. Returned data is \code{None} if no new
292 messages, else value of \samp{RECENT} response.
293\end{methoddesc}
294
295\begin{methoddesc}{rename}{oldmailbox, newmailbox}
296 Rename mailbox named \var{oldmailbox} to \var{newmailbox}.
297\end{methoddesc}
298
299\begin{methoddesc}{response}{code}
300 Return data for response \var{code} if received, or
301 \code{None}. Returns the given code, instead of the usual type.
302\end{methoddesc}
303
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000304\begin{methoddesc}{search}{charset, criterion\optional{, ...}}
Fred Drake99d707a2000-05-26 04:08:37 +0000305 Search mailbox for matching messages. Returned data contains a space
306 separated list of matching message numbers. \var{charset} may be
307 \code{None}, in which case no \samp{CHARSET} will be specified in the
308 request to the server. The IMAP protocol requires that at least one
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000309 criterion be specified; an exception will be raised when the server
Fred Drake99d707a2000-05-26 04:08:37 +0000310 returns an error.
311
312 Example:
313
314\begin{verbatim}
315# M is a connected IMAP4 instance...
316msgnums = M.search(None, 'FROM', '"LDJ"')
317
318# or:
319msgnums = M.search(None, '(FROM "LDJ")')
320\end{verbatim}
Fred Drake89de3141998-04-11 04:19:04 +0000321\end{methoddesc}
322
323\begin{methoddesc}{select}{\optional{mailbox\optional{, readonly}}}
324 Select a mailbox. Returned data is the count of messages in
325 \var{mailbox} (\samp{EXISTS} response). The default \var{mailbox}
326 is \code{'INBOX'}. If the \var{readonly} flag is set, modifications
327 to the mailbox are not allowed.
328\end{methoddesc}
329
Piers Lauder3fca2912002-06-17 07:07:20 +0000330\begin{methoddesc}{send}{data}
331 Sends \code{data} to the remote server.
332 You may override this method.
333\end{methoddesc}
334
Piers Laudera3a16682001-07-20 11:04:19 +0000335\begin{methoddesc}{setacl}{mailbox, who, what}
336 Set an \samp{ACL} for \var{mailbox}.
337 The method is non-standard, but is supported by the \samp{Cyrus} server.
338\end{methoddesc}
339
Piers Lauder3fca2912002-06-17 07:07:20 +0000340\begin{methoddesc}{setquota}{root, limits}
341 Set the \samp{quota} \var{root}'s resource \var{limits}.
342 This method is part of the IMAP4 QUOTA extension defined in rfc2087.
Neal Norwitz1cfcafc2002-07-20 00:46:12 +0000343\versionadded{2.3}
Piers Lauder3fca2912002-06-17 07:07:20 +0000344\end{methoddesc}
345
Piers Laudera3a16682001-07-20 11:04:19 +0000346\begin{methoddesc}{shutdown}{}
347 Close connection established in \code{open}.
348 You may override this method.
349\end{methoddesc}
350
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000351\begin{methoddesc}{socket}{}
Piers Laudera3a16682001-07-20 11:04:19 +0000352 Returns socket instance used to connect to server.
353\end{methoddesc}
354
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000355\begin{methoddesc}{sort}{sort_criteria, charset, search_criterion\optional{, ...}}
Piers Laudera3a16682001-07-20 11:04:19 +0000356 The \code{sort} command is a variant of \code{search} with sorting semantics for
357 the results. Returned data contains a space
358 separated list of matching message numbers.
359
Martin v. Löwis3ae0f7a2003-03-27 16:59:38 +0000360 Sort has two arguments before the \var{search_criterion}
Piers Laudera3a16682001-07-20 11:04:19 +0000361 argument(s); a parenthesized list of \var{sort_criteria}, and the searching \var{charset}.
362 Note that unlike \code{search}, the searching \var{charset} argument is mandatory.
363 There is also a \code{uid sort} command which corresponds to \code{sort} the way
364 that \code{uid search} corresponds to \code{search}.
365 The \code{sort} command first searches the mailbox for messages that
366 match the given searching criteria using the charset argument for
367 the interpretation of strings in the searching criteria. It then
368 returns the numbers of matching messages.
369
370 This is an \samp{IMAP4rev1} extension command.
Guido van Rossum5f7a28c1999-12-13 23:29:39 +0000371\end{methoddesc}
372
Fred Drake89de3141998-04-11 04:19:04 +0000373\begin{methoddesc}{status}{mailbox, names}
374 Request named status conditions for \var{mailbox}.
375\end{methoddesc}
376
377\begin{methoddesc}{store}{message_set, command, flag_list}
378 Alters flag dispositions for messages in mailbox.
379\end{methoddesc}
380
381\begin{methoddesc}{subscribe}{mailbox}
382 Subscribe to new mailbox.
383\end{methoddesc}
384
Martin v. Löwisd8921372003-11-10 06:44:44 +0000385\begin{methoddesc}{thread}{threading_algorithm, charset, search_criterion\optional{, ...}}
386 The \code{thread} command is a variant of \code{search} with threading semantics for
387 the results. Returned data contains a space
388 separated list of thread members.
389
390 Thread members consist of zero or more messages numbers, delimited by spaces,
391 indicating successive parent and child.
392
393 Thread has two arguments before the \var{search_criterion}
394 argument(s); a \var{threading_algorithm}, and the searching \var{charset}.
395 Note that unlike \code{search}, the searching \var{charset} argument is mandatory.
396 There is also a \code{uid thread} command which corresponds to \code{thread} the way
397 that \code{uid search} corresponds to \code{search}.
398 The \code{thread} command first searches the mailbox for messages that
399 match the given searching criteria using the charset argument for
400 the interpretation of strings in the searching criteria. It thren
401 returns the matching messages threaded according to the specified
402 threading algorithm.
403
404 This is an \samp{IMAP4rev1} extension command. \versionadded{2.4}
405\end{methoddesc}
406
Fred Drake99d707a2000-05-26 04:08:37 +0000407\begin{methoddesc}{uid}{command, arg\optional{, ...}}
Fred Drake89de3141998-04-11 04:19:04 +0000408 Execute command args with messages identified by UID, rather than
Fred Drake99d707a2000-05-26 04:08:37 +0000409 message number. Returns response appropriate to command. At least
410 one argument must be supplied; if none are provided, the server will
411 return an error and an exception will be raised.
Fred Drake89de3141998-04-11 04:19:04 +0000412\end{methoddesc}
413
414\begin{methoddesc}{unsubscribe}{mailbox}
415 Unsubscribe from old mailbox.
416\end{methoddesc}
417
Fred Drake99d707a2000-05-26 04:08:37 +0000418\begin{methoddesc}{xatom}{name\optional{, arg\optional{, ...}}}
Fred Drake89de3141998-04-11 04:19:04 +0000419 Allow simple extension commands notified by server in
420 \samp{CAPABILITY} response.
421\end{methoddesc}
422
423
Piers Laudera4f83132002-03-08 01:53:24 +0000424Instances of \class{IMAP4_SSL} have just one additional method:
425
426\begin{methoddesc}{ssl}{}
427 Returns SSLObject instance used for the secure connection with the server.
428\end{methoddesc}
429
430
Fred Drake8f6b9581998-04-11 15:11:55 +0000431The following attributes are defined on instances of \class{IMAP4}:
Fred Drake89de3141998-04-11 04:19:04 +0000432
Fred Drake8f6b9581998-04-11 15:11:55 +0000433
434\begin{memberdesc}{PROTOCOL_VERSION}
Fred Drakeb7745501999-04-22 16:46:18 +0000435The most recent supported protocol in the
436\samp{CAPABILITY} response from the server.
Fred Drake8f6b9581998-04-11 15:11:55 +0000437\end{memberdesc}
438
439\begin{memberdesc}{debug}
440Integer value to control debugging output. The initialize value is
441taken from the module variable \code{Debug}. Values greater than
442three trace each command.
443\end{memberdesc}
Fred Drake89de3141998-04-11 04:19:04 +0000444
445
Fred Drake363d67c1999-07-07 13:42:56 +0000446\subsection{IMAP4 Example \label{imap4-example}}
Fred Drake89de3141998-04-11 04:19:04 +0000447
448Here is a minimal example (without error checking) that opens a
449mailbox and retrieves and prints all messages:
450
451\begin{verbatim}
Piers Laudera3a16682001-07-20 11:04:19 +0000452import getpass, imaplib
Fred Drake363d67c1999-07-07 13:42:56 +0000453
Fred Drake89de3141998-04-11 04:19:04 +0000454M = imaplib.IMAP4()
Fred Drake363d67c1999-07-07 13:42:56 +0000455M.login(getpass.getuser(), getpass.getpass())
456M.select()
457typ, data = M.search(None, 'ALL')
Piers Laudera3a16682001-07-20 11:04:19 +0000458for num in data[0].split():
Fred Drake363d67c1999-07-07 13:42:56 +0000459 typ, data = M.fetch(num, '(RFC822)')
Fred Drake89de3141998-04-11 04:19:04 +0000460 print 'Message %s\n%s\n' % (num, data[0][1])
Fred Drake363d67c1999-07-07 13:42:56 +0000461M.logout()
Fred Drake89de3141998-04-11 04:19:04 +0000462\end{verbatim}