blob: 89e7e0c8419bb7bfce83a35baeb2173dee65fe6c [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{poplib} ---
Fred Drakee2effbd1999-04-22 16:21:09 +00002 POP3 protocol client}
Fred Drakeb91e9341998-07-23 17:59:49 +00003
Fred Drakee2effbd1999-04-22 16:21:09 +00004\declaremodule{standard}{poplib}
Fred Drakeb91e9341998-07-23 17:59:49 +00005\modulesynopsis{POP3 protocol client (requires sockets).}
6
Fred Drake38e5d272000-04-03 20:13:55 +00007%By Andrew T. Csillag
8%Even though I put it into LaTeX, I cannot really claim that I wrote
9%it since I just stole most of it from the poplib.py source code and
10%the imaplib ``chapter''.
Eric S. Raymond5ac97952001-01-11 04:19:52 +000011%Revised by ESR, January 2000
Fred Drake38e5d272000-04-03 20:13:55 +000012
Fred Drakea4684041998-04-24 20:49:02 +000013\indexii{POP3}{protocol}
14
15This module defines a class, \class{POP3}, which encapsulates a
16connection to an POP3 server and implements protocol as defined in
Thomas Woutersf8316632000-07-16 19:01:10 +000017\rfc{1725}. The \class{POP3} class supports both the minimal and
Fred Drakea4684041998-04-24 20:49:02 +000018optional command sets.
19
Eric S. Raymond5ac97952001-01-11 04:19:52 +000020Note that POP3, though widely supported, is obsolescent. The
21implementation quality of POP3 servers varies widely, and too many are
22quite poor. If your mailserver supports IMAP, you would be better off
23using the \refmodule{IMAP} class, as IMAP servers tend to be better
24implemented.
25
Fred Drakea4684041998-04-24 20:49:02 +000026A single class is provided by the \module{poplib} module:
27
28\begin{classdesc}{POP3}{host\optional{, port}}
29This class implements the actual POP3 protocol. The connection is
30created when the instance is initialized.
31If \var{port} is omitted, the standard POP3 port (110) is used.
32\end{classdesc}
33
Fred Drakee2effbd1999-04-22 16:21:09 +000034One exception is defined as an attribute of the \module{poplib} module:
Fred Drakea4684041998-04-24 20:49:02 +000035
36\begin{excdesc}{error_proto}
37Exception raised on any errors. The reason for the exception is
38passed to the constructor as a string.
39\end{excdesc}
40
41
Fred Drakee2effbd1999-04-22 16:21:09 +000042\subsection{POP3 Objects \label{pop3-objects}}
Fred Drakea4684041998-04-24 20:49:02 +000043
44All POP3 commands are represented by methods of the same name,
Fred Drakee2effbd1999-04-22 16:21:09 +000045in lower-case; most return the response text sent by the server.
Fred Drakea4684041998-04-24 20:49:02 +000046
47An \class{POP3} instance has the following methods:
48
49
50\begin{methoddesc}{getwelcome}{}
51Returns the greeting string sent by the POP3 server.
52\end{methoddesc}
53
54
55\begin{methoddesc}{user}{username}
Thomas Woutersf8316632000-07-16 19:01:10 +000056Send user command, response should indicate that a password is required.
Fred Drakea4684041998-04-24 20:49:02 +000057\end{methoddesc}
58
59\begin{methoddesc}{pass_}{password}
60Send password, response includes message count and mailbox size.
61Note: the mailbox on the server is locked until \method{quit()} is
62called.
63\end{methoddesc}
64
65\begin{methoddesc}{apop}{user, secret}
66Use the more secure APOP authentication to log into the POP3 server.
67\end{methoddesc}
68
69\begin{methoddesc}{rpop}{user}
70Use RPOP authentication (similar to UNIX r-commands) to log into POP3 server.
71\end{methoddesc}
72
73\begin{methoddesc}{stat}{}
74Get mailbox status. The result is a tuple of 2 integers:
75\code{(\var{message count}, \var{mailbox size})}.
76\end{methoddesc}
77
78\begin{methoddesc}{list}{\optional{which}}
79Request message list, result is in the form
Fred Drake3a4ceb71999-07-07 14:04:38 +000080\code{(\var{response}, ['mesg_num octets', ...])}. If \var{which} is
Fred Drakea4684041998-04-24 20:49:02 +000081set, it is the message to list.
82\end{methoddesc}
83
84\begin{methoddesc}{retr}{which}
Eric S. Raymond5ac97952001-01-11 04:19:52 +000085Retrieve whole message number \var{which}, and set its seen flag.
86Result is in form \code{(\var{response}, ['line', ...], \var{octets})}.
Fred Drakea4684041998-04-24 20:49:02 +000087\end{methoddesc}
88
89\begin{methoddesc}{dele}{which}
Eric S. Raymond5ac97952001-01-11 04:19:52 +000090Flag message number \var{which} for deletion. On most servers
91deletions are not actually performed until QUIT (the major exception is
92Eudora QPOP, which deliberately violates the RFCs by doing pending
93deletes on any disconnect).
Fred Drakea4684041998-04-24 20:49:02 +000094\end{methoddesc}
95
96\begin{methoddesc}{rset}{}
97Remove any deletion marks for the mailbox.
98\end{methoddesc}
99
100\begin{methoddesc}{noop}{}
101Do nothing. Might be used as a keep-alive.
102\end{methoddesc}
103
104\begin{methoddesc}{quit}{}
105Signoff: commit changes, unlock mailbox, drop connection.
106\end{methoddesc}
107
108\begin{methoddesc}{top}{which, howmuch}
109Retrieves the message header plus \var{howmuch} lines of the message
110after the header of message number \var{which}. Result is in form
Fred Drake3a4ceb71999-07-07 14:04:38 +0000111\code{(\var{response}, ['line', ...], \var{octets})}.
Eric S. Raymond5ac97952001-01-11 04:19:52 +0000112
113The POP3 TOP command this method uses, unlike the RETR command,
114doesn't set the message's seen flag; unfortunately, TOP is poorly
115specified in the RFCs and is frequently broken in off-brand servers.
116Test this method by hand against the POP3 servers you will use before
117trusting it.
Fred Drakea4684041998-04-24 20:49:02 +0000118\end{methoddesc}
119
120\begin{methoddesc}{uidl}{\optional{which}}
121Return message digest (unique id) list.
Fred Drakedbc2d081999-05-13 18:48:14 +0000122If \var{which} is specified, result contains the unique id for that
123message in the form \code{'\var{response}\ \var{mesgnum}\ \var{uid}},
Fred Drake3a4ceb71999-07-07 14:04:38 +0000124otherwise result is list \code{(\var{response}, ['mesgnum uid', ...],
125\var{octets})}.
Fred Drakea4684041998-04-24 20:49:02 +0000126\end{methoddesc}
127
Eric S. Raymond5ac97952001-01-11 04:19:52 +0000128\begin{seealso}
129 \seemodule{imap}{The standard Python IMAP module.}
Eric S. Raymondab78bec2001-01-11 10:22:34 +0000130 \seetitle{http://www.tuxedo.org/~esr/fetchail/fetchmail-FAQ.html}{
131 The FAQ for the fetchmail POP/IMAP client collects information
132 on POP3 server variations and RFC noncompliance that may be
133 useful if you need to write an application based on poplib.}
Eric S. Raymond5ac97952001-01-11 04:19:52 +0000134\end{seealso}
Fred Drakea4684041998-04-24 20:49:02 +0000135
Fred Drakee2effbd1999-04-22 16:21:09 +0000136\subsection{POP3 Example \label{pop3-example}}
Fred Drakea4684041998-04-24 20:49:02 +0000137
138Here is a minimal example (without error checking) that opens a
139mailbox and retrieves and prints all messages:
140
141\begin{verbatim}
Guido van Rossumaac399b1998-12-08 16:30:10 +0000142import getpass, poplib
Fred Drakea4684041998-04-24 20:49:02 +0000143
144M = poplib.POP3('localhost')
145M.user(getpass.getuser())
Guido van Rossumaac399b1998-12-08 16:30:10 +0000146M.pass_(getpass.getpass())
Fred Drakea4684041998-04-24 20:49:02 +0000147numMessages = len(M.list()[1])
148for i in range(numMessages):
149 for j in M.retr(i+1)[1]:
Guido van Rossumaac399b1998-12-08 16:30:10 +0000150 print j
Fred Drakea4684041998-04-24 20:49:02 +0000151\end{verbatim}
152
153At the end of the module, there is a test section that contains a more
154extensive example of usage.