POP3.rset() Remove any deletion marks for the mailbox.
POP3.rpop(user) Use RPOP authentication (similar to UNIX r-commands) to log into POP3 server.
POP3.retr(which) Retrieve whole message number which, and set its seen flag. Result is in form (response, ['line', ...], octets).
POP3.quit() Signoff: commit changes, unlock mailbox, drop connection.
POP3.pass_(password) Send password, response includes message count and mailbox size. Note: the mailbox on the server is locked until quit() is called.
POP3.noop() Do nothing. Might be used as a keep-alive.
POP3.list([which]) Request message list, result is in the form (response, ['mesg_num octets', ...], octets). If which is set, it is the message to list.
POP3.getwelcome() Returns the greeting string sent by the POP3 server.
POP3.dele(which) Flag message number which for deletion. On most servers deletions are not actually performed until QUIT (the major exception is Eudora QPOP, which deliberately violates the RFCs by doing pending deletes on any disconnect).
POP3.capa() Query the server’s capabilities as specified in RFC 2449. Returns a dictionary in the form {'name': ['param'...]}. New in version 3.4.
Page 257 of 663