blob: d227b53ff9093e6bf971bc91a072d36777f450eb [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`poplib` --- POP3 protocol client
2======================================
3
4.. module:: poplib
5 :synopsis: POP3 protocol client (requires sockets).
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Christian Heimes5b5e81c2007-12-31 16:14:33 +00007.. sectionauthor:: Andrew T. Csillag
8.. revised by ESR, January 2000
Georg Brandl116aa622007-08-15 14:28:22 +00009
Raymond Hettinger469271d2011-01-27 20:38:46 +000010**Source code:** :source:`Lib/poplib.py`
11
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040012.. index:: pair: POP3; protocol
13
Raymond Hettinger469271d2011-01-27 20:38:46 +000014--------------
15
Georg Brandl116aa622007-08-15 14:28:22 +000016This module defines a class, :class:`POP3`, which encapsulates a connection to a
Antoine Pitrou8618d742012-11-23 20:13:48 +010017POP3 server and implements the protocol as defined in :rfc:`1939`. The
18:class:`POP3` class supports both the minimal and optional command sets from
Georg Brandl93a56cd2014-10-30 22:25:41 +010019:rfc:`1939`. The :class:`POP3` class also supports the ``STLS`` command introduced
Antoine Pitrou8618d742012-11-23 20:13:48 +010020in :rfc:`2595` to enable encrypted communication on an already established connection.
21
Georg Brandl116aa622007-08-15 14:28:22 +000022Additionally, this module provides a class :class:`POP3_SSL`, which provides
23support for connecting to POP3 servers that use SSL as an underlying protocol
24layer.
25
26Note that POP3, though widely supported, is obsolescent. The implementation
27quality of POP3 servers varies widely, and too many are quite poor. If your
28mailserver supports IMAP, you would be better off using the
29:class:`imaplib.IMAP4` class, as IMAP servers tend to be better implemented.
30
Antoine Pitrou3813c9e2012-11-18 18:37:02 +010031The :mod:`poplib` module provides two classes:
Georg Brandl116aa622007-08-15 14:28:22 +000032
33
Georg Brandl18244152009-09-02 20:34:52 +000034.. class:: POP3(host, port=POP3_PORT[, timeout])
Georg Brandl116aa622007-08-15 14:28:22 +000035
36 This class implements the actual POP3 protocol. The connection is created when
37 the instance is initialized. If *port* is omitted, the standard POP3 port (110)
38 is used. The optional *timeout* parameter specifies a timeout in seconds for the
Georg Brandlf78e02b2008-06-10 17:40:04 +000039 connection attempt (if not specified, the global default timeout setting will
40 be used).
Georg Brandl116aa622007-08-15 14:28:22 +000041
Steve Dower60419a72019-06-24 08:42:54 -070042 .. audit-event:: poplib.POP3 "self host port"
43
44 All commands will raise an :ref:`auditing event <auditing>`
45 ``poplib.POP3.putline`` with arguments ``self`` and ``line``,
46 where ``line`` is the bytes about to be sent to the remote host.
47
Georg Brandl116aa622007-08-15 14:28:22 +000048
Giampaolo Rodolà42382fe2010-08-17 16:09:53 +000049.. class:: POP3_SSL(host, port=POP3_SSL_PORT, keyfile=None, certfile=None, timeout=None, context=None)
Georg Brandl116aa622007-08-15 14:28:22 +000050
51 This is a subclass of :class:`POP3` that connects to the server over an SSL
52 encrypted socket. If *port* is not specified, 995, the standard POP3-over-SSL
Antoine Pitrouc5e075f2014-03-22 18:19:11 +010053 port is used. *timeout* works as in the :class:`POP3` constructor.
54 *context* is an optional :class:`ssl.SSLContext` object which allows
55 bundling SSL configuration options, certificates and private keys into a
56 single (potentially long-lived) structure. Please read :ref:`ssl-security`
57 for best practices.
58
59 *keyfile* and *certfile* are a legacy alternative to *context* - they can
60 point to PEM-formatted private key and certificate chain files,
61 respectively, for the SSL connection.
Giampaolo Rodolà42382fe2010-08-17 16:09:53 +000062
Steve Dower60419a72019-06-24 08:42:54 -070063 .. audit-event:: poplib.POP3 "self host port"
64
65 All commands will raise an :ref:`auditing event <auditing>`
66 ``poplib.POP3.putline`` with arguments ``self`` and ``line``,
67 where ``line`` is the bytes about to be sent to the remote host.
68
Giampaolo Rodolà42382fe2010-08-17 16:09:53 +000069 .. versionchanged:: 3.2
70 *context* parameter added.
Georg Brandl116aa622007-08-15 14:28:22 +000071
Christian Heimes1bc70682013-12-02 20:10:50 +010072 .. versionchanged:: 3.4
73 The class now supports hostname check with
Antoine Pitrouc5e075f2014-03-22 18:19:11 +010074 :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see
75 :data:`ssl.HAS_SNI`).
Georg Brandl116aa622007-08-15 14:28:22 +000076
Christian Heimesd0486372016-09-10 23:23:33 +020077 .. deprecated:: 3.6
78
79 *keyfile* and *certfile* are deprecated in favor of *context*.
80 Please use :meth:`ssl.SSLContext.load_cert_chain` instead, or let
81 :func:`ssl.create_default_context` select the system's trusted CA
82 certificates for you.
83
Georg Brandl116aa622007-08-15 14:28:22 +000084One exception is defined as an attribute of the :mod:`poplib` module:
85
86
87.. exception:: error_proto
88
89 Exception raised on any errors from this module (errors from :mod:`socket`
90 module are not caught). The reason for the exception is passed to the
91 constructor as a string.
92
93
94.. seealso::
95
96 Module :mod:`imaplib`
97 The standard Python IMAP module.
98
99 `Frequently Asked Questions About Fetchmail <http://www.catb.org/~esr/fetchmail/fetchmail-FAQ.html>`_
100 The FAQ for the :program:`fetchmail` POP/IMAP client collects information on
101 POP3 server variations and RFC noncompliance that may be useful if you need to
102 write an application based on the POP protocol.
103
104
105.. _pop3-objects:
106
107POP3 Objects
108------------
109
110All POP3 commands are represented by methods of the same name, in lower-case;
111most return the response text sent by the server.
112
113An :class:`POP3` instance has the following methods:
114
115
116.. method:: POP3.set_debuglevel(level)
117
118 Set the instance's debugging level. This controls the amount of debugging
119 output printed. The default, ``0``, produces no debugging output. A value of
120 ``1`` produces a moderate amount of debugging output, generally a single line
121 per request. A value of ``2`` or higher produces the maximum amount of
122 debugging output, logging each line sent and received on the control connection.
123
124
125.. method:: POP3.getwelcome()
126
127 Returns the greeting string sent by the POP3 server.
128
129
Antoine Pitrou25cee192012-11-23 20:07:39 +0100130.. method:: POP3.capa()
131
132 Query the server's capabilities as specified in :rfc:`2449`.
133 Returns a dictionary in the form ``{'name': ['param'...]}``.
134
135 .. versionadded:: 3.4
136
137
Georg Brandl116aa622007-08-15 14:28:22 +0000138.. method:: POP3.user(username)
139
140 Send user command, response should indicate that a password is required.
141
142
143.. method:: POP3.pass_(password)
144
145 Send password, response includes message count and mailbox size. Note: the
Jesus Ceac73f8632012-12-26 16:47:03 +0100146 mailbox on the server is locked until :meth:`~poplib.quit` is called.
Georg Brandl116aa622007-08-15 14:28:22 +0000147
148
149.. method:: POP3.apop(user, secret)
150
151 Use the more secure APOP authentication to log into the POP3 server.
152
153
154.. method:: POP3.rpop(user)
155
156 Use RPOP authentication (similar to UNIX r-commands) to log into POP3 server.
157
158
159.. method:: POP3.stat()
160
161 Get mailbox status. The result is a tuple of 2 integers: ``(message count,
162 mailbox size)``.
163
164
165.. method:: POP3.list([which])
166
167 Request message list, result is in the form ``(response, ['mesg_num octets',
168 ...], octets)``. If *which* is set, it is the message to list.
169
170
171.. method:: POP3.retr(which)
172
173 Retrieve whole message number *which*, and set its seen flag. Result is in form
174 ``(response, ['line', ...], octets)``.
175
176
177.. method:: POP3.dele(which)
178
179 Flag message number *which* for deletion. On most servers deletions are not
180 actually performed until QUIT (the major exception is Eudora QPOP, which
181 deliberately violates the RFCs by doing pending deletes on any disconnect).
182
183
184.. method:: POP3.rset()
185
186 Remove any deletion marks for the mailbox.
187
188
189.. method:: POP3.noop()
190
191 Do nothing. Might be used as a keep-alive.
192
193
194.. method:: POP3.quit()
195
196 Signoff: commit changes, unlock mailbox, drop connection.
197
198
199.. method:: POP3.top(which, howmuch)
200
201 Retrieves the message header plus *howmuch* lines of the message after the
202 header of message number *which*. Result is in form ``(response, ['line', ...],
203 octets)``.
204
205 The POP3 TOP command this method uses, unlike the RETR command, doesn't set the
206 message's seen flag; unfortunately, TOP is poorly specified in the RFCs and is
207 frequently broken in off-brand servers. Test this method by hand against the
208 POP3 servers you will use before trusting it.
209
210
Georg Brandl18244152009-09-02 20:34:52 +0000211.. method:: POP3.uidl(which=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000212
213 Return message digest (unique id) list. If *which* is specified, result contains
214 the unique id for that message in the form ``'response mesgnum uid``, otherwise
215 result is list ``(response, ['mesgnum uid', ...], octets)``.
216
R David Murrayb8cd3e42015-05-16 15:05:53 -0400217
218.. method:: POP3.utf8()
219
Berker Peksagfee05da2015-05-19 01:38:05 +0300220 Try to switch to UTF-8 mode. Returns the server response if successful,
R David Murrayb8cd3e42015-05-16 15:05:53 -0400221 raises :class:`error_proto` if not. Specified in :RFC:`6856`.
222
223 .. versionadded:: 3.5
224
225
Antoine Pitrou8618d742012-11-23 20:13:48 +0100226.. method:: POP3.stls(context=None)
227
228 Start a TLS session on the active connection as specified in :rfc:`2595`.
229 This is only allowed before user authentication
230
231 *context* parameter is a :class:`ssl.SSLContext` object which allows
232 bundling SSL configuration options, certificates and private keys into
Antoine Pitrouc5e075f2014-03-22 18:19:11 +0100233 a single (potentially long-lived) structure. Please read :ref:`ssl-security`
234 for best practices.
235
236 This method supports hostname checking via
237 :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see
238 :data:`ssl.HAS_SNI`).
Antoine Pitrou8618d742012-11-23 20:13:48 +0100239
240 .. versionadded:: 3.4
241
242
Georg Brandl116aa622007-08-15 14:28:22 +0000243Instances of :class:`POP3_SSL` have no additional methods. The interface of this
244subclass is identical to its parent.
245
246
247.. _pop3-example:
248
249POP3 Example
250------------
251
252Here is a minimal example (without error checking) that opens a mailbox and
253retrieves and prints all messages::
254
255 import getpass, poplib
256
257 M = poplib.POP3('localhost')
258 M.user(getpass.getuser())
259 M.pass_(getpass.getpass())
260 numMessages = len(M.list()[1])
261 for i in range(numMessages):
262 for j in M.retr(i+1)[1]:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000263 print(j)
Georg Brandl116aa622007-08-15 14:28:22 +0000264
265At the end of the module, there is a test section that contains a more extensive
266example of usage.
267