Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`poplib` --- POP3 protocol client |
| 2 | ====================================== |
| 3 | |
| 4 | .. module:: poplib |
| 5 | :synopsis: POP3 protocol client (requires sockets). |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 6 | .. sectionauthor:: Andrew T. Csillag |
| 7 | .. revised by ESR, January 2000 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 8 | |
| 9 | .. index:: pair: POP3; protocol |
| 10 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 11 | This module defines a class, :class:`POP3`, which encapsulates a connection to a |
| 12 | POP3 server and implements the protocol as defined in :rfc:`1725`. The |
| 13 | :class:`POP3` class supports both the minimal and optional command sets. |
| 14 | Additionally, this module provides a class :class:`POP3_SSL`, which provides |
| 15 | support for connecting to POP3 servers that use SSL as an underlying protocol |
| 16 | layer. |
| 17 | |
| 18 | Note that POP3, though widely supported, is obsolescent. The implementation |
| 19 | quality of POP3 servers varies widely, and too many are quite poor. If your |
| 20 | mailserver supports IMAP, you would be better off using the |
| 21 | :class:`imaplib.IMAP4` class, as IMAP servers tend to be better implemented. |
| 22 | |
| 23 | A single class is provided by the :mod:`poplib` module: |
| 24 | |
| 25 | |
Georg Brandl | 1824415 | 2009-09-02 20:34:52 +0000 | [diff] [blame] | 26 | .. class:: POP3(host, port=POP3_PORT[, timeout]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 | |
| 28 | This class implements the actual POP3 protocol. The connection is created when |
| 29 | the instance is initialized. If *port* is omitted, the standard POP3 port (110) |
| 30 | is used. The optional *timeout* parameter specifies a timeout in seconds for the |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 31 | connection attempt (if not specified, the global default timeout setting will |
| 32 | be used). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 33 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 34 | |
Georg Brandl | 1824415 | 2009-09-02 20:34:52 +0000 | [diff] [blame] | 35 | .. class:: POP3_SSL(host, port=POP3_SSL_PORT, keyfile=None, certfile=None[, timeout]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 36 | |
| 37 | This is a subclass of :class:`POP3` that connects to the server over an SSL |
| 38 | encrypted socket. If *port* is not specified, 995, the standard POP3-over-SSL |
| 39 | port is used. *keyfile* and *certfile* are also optional - they can contain a |
| 40 | PEM formatted private key and certificate chain file for the SSL connection. |
Georg Brandl | 1824415 | 2009-09-02 20:34:52 +0000 | [diff] [blame] | 41 | *timeout* works as in the :class:`POP3` constructor. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 42 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 43 | |
| 44 | One exception is defined as an attribute of the :mod:`poplib` module: |
| 45 | |
| 46 | |
| 47 | .. exception:: error_proto |
| 48 | |
| 49 | Exception raised on any errors from this module (errors from :mod:`socket` |
| 50 | module are not caught). The reason for the exception is passed to the |
| 51 | constructor as a string. |
| 52 | |
| 53 | |
| 54 | .. seealso:: |
| 55 | |
| 56 | Module :mod:`imaplib` |
| 57 | The standard Python IMAP module. |
| 58 | |
| 59 | `Frequently Asked Questions About Fetchmail <http://www.catb.org/~esr/fetchmail/fetchmail-FAQ.html>`_ |
| 60 | The FAQ for the :program:`fetchmail` POP/IMAP client collects information on |
| 61 | POP3 server variations and RFC noncompliance that may be useful if you need to |
| 62 | write an application based on the POP protocol. |
| 63 | |
| 64 | |
| 65 | .. _pop3-objects: |
| 66 | |
| 67 | POP3 Objects |
| 68 | ------------ |
| 69 | |
| 70 | All POP3 commands are represented by methods of the same name, in lower-case; |
| 71 | most return the response text sent by the server. |
| 72 | |
| 73 | An :class:`POP3` instance has the following methods: |
| 74 | |
| 75 | |
| 76 | .. method:: POP3.set_debuglevel(level) |
| 77 | |
| 78 | Set the instance's debugging level. This controls the amount of debugging |
| 79 | output printed. The default, ``0``, produces no debugging output. A value of |
| 80 | ``1`` produces a moderate amount of debugging output, generally a single line |
| 81 | per request. A value of ``2`` or higher produces the maximum amount of |
| 82 | debugging output, logging each line sent and received on the control connection. |
| 83 | |
| 84 | |
| 85 | .. method:: POP3.getwelcome() |
| 86 | |
| 87 | Returns the greeting string sent by the POP3 server. |
| 88 | |
| 89 | |
| 90 | .. method:: POP3.user(username) |
| 91 | |
| 92 | Send user command, response should indicate that a password is required. |
| 93 | |
| 94 | |
| 95 | .. method:: POP3.pass_(password) |
| 96 | |
| 97 | Send password, response includes message count and mailbox size. Note: the |
| 98 | mailbox on the server is locked until :meth:`quit` is called. |
| 99 | |
| 100 | |
| 101 | .. method:: POP3.apop(user, secret) |
| 102 | |
| 103 | Use the more secure APOP authentication to log into the POP3 server. |
| 104 | |
| 105 | |
| 106 | .. method:: POP3.rpop(user) |
| 107 | |
| 108 | Use RPOP authentication (similar to UNIX r-commands) to log into POP3 server. |
| 109 | |
| 110 | |
| 111 | .. method:: POP3.stat() |
| 112 | |
| 113 | Get mailbox status. The result is a tuple of 2 integers: ``(message count, |
| 114 | mailbox size)``. |
| 115 | |
| 116 | |
| 117 | .. method:: POP3.list([which]) |
| 118 | |
| 119 | Request message list, result is in the form ``(response, ['mesg_num octets', |
| 120 | ...], octets)``. If *which* is set, it is the message to list. |
| 121 | |
| 122 | |
| 123 | .. method:: POP3.retr(which) |
| 124 | |
| 125 | Retrieve whole message number *which*, and set its seen flag. Result is in form |
| 126 | ``(response, ['line', ...], octets)``. |
| 127 | |
| 128 | |
| 129 | .. method:: POP3.dele(which) |
| 130 | |
| 131 | Flag message number *which* for deletion. On most servers deletions are not |
| 132 | actually performed until QUIT (the major exception is Eudora QPOP, which |
| 133 | deliberately violates the RFCs by doing pending deletes on any disconnect). |
| 134 | |
| 135 | |
| 136 | .. method:: POP3.rset() |
| 137 | |
| 138 | Remove any deletion marks for the mailbox. |
| 139 | |
| 140 | |
| 141 | .. method:: POP3.noop() |
| 142 | |
| 143 | Do nothing. Might be used as a keep-alive. |
| 144 | |
| 145 | |
| 146 | .. method:: POP3.quit() |
| 147 | |
| 148 | Signoff: commit changes, unlock mailbox, drop connection. |
| 149 | |
| 150 | |
| 151 | .. method:: POP3.top(which, howmuch) |
| 152 | |
| 153 | Retrieves the message header plus *howmuch* lines of the message after the |
| 154 | header of message number *which*. Result is in form ``(response, ['line', ...], |
| 155 | octets)``. |
| 156 | |
| 157 | The POP3 TOP command this method uses, unlike the RETR command, doesn't set the |
| 158 | message's seen flag; unfortunately, TOP is poorly specified in the RFCs and is |
| 159 | frequently broken in off-brand servers. Test this method by hand against the |
| 160 | POP3 servers you will use before trusting it. |
| 161 | |
| 162 | |
Georg Brandl | 1824415 | 2009-09-02 20:34:52 +0000 | [diff] [blame] | 163 | .. method:: POP3.uidl(which=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 164 | |
| 165 | Return message digest (unique id) list. If *which* is specified, result contains |
| 166 | the unique id for that message in the form ``'response mesgnum uid``, otherwise |
| 167 | result is list ``(response, ['mesgnum uid', ...], octets)``. |
| 168 | |
| 169 | Instances of :class:`POP3_SSL` have no additional methods. The interface of this |
| 170 | subclass is identical to its parent. |
| 171 | |
| 172 | |
| 173 | .. _pop3-example: |
| 174 | |
| 175 | POP3 Example |
| 176 | ------------ |
| 177 | |
| 178 | Here is a minimal example (without error checking) that opens a mailbox and |
| 179 | retrieves and prints all messages:: |
| 180 | |
| 181 | import getpass, poplib |
| 182 | |
| 183 | M = poplib.POP3('localhost') |
| 184 | M.user(getpass.getuser()) |
| 185 | M.pass_(getpass.getpass()) |
| 186 | numMessages = len(M.list()[1]) |
| 187 | for i in range(numMessages): |
| 188 | for j in M.retr(i+1)[1]: |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 189 | print(j) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 190 | |
| 191 | At the end of the module, there is a test section that contains a more extensive |
| 192 | example of usage. |
| 193 | |