imaplib --- IMAP4 協定用戶端¶
原始碼:Lib/imaplib.py
This module defines three classes,IMAP4,IMAP4_SSL andIMAP4_stream, which encapsulate a connection to an IMAP4 server andimplement a large subset of the IMAP4rev1 client protocol as defined inRFC 2060. It is backward compatible with IMAP4 (RFC 1730) servers, butnote that theSTATUS command is not supported in IMAP4.
可用性: not WASI.
此模組在 WebAssembly 平台上不起作用或無法使用。更多資訊請參閱WebAssembly 平台。
Three classes are provided by theimaplib module,IMAP4 is thebase class:
- classimaplib.IMAP4(host='',port=IMAP4_PORT,timeout=None)¶
This class implements the actual IMAP4 protocol. The connection is created andprotocol version (IMAP4 or IMAP4rev1) is determined when the instance isinitialized. Ifhost is not specified,
''(the local host) is used. Ifport is omitted, the standard IMAP4 port (143) is used. The optionaltimeoutparameter specifies a timeout in seconds for the connection attempt.If timeout is not given or isNone, the global default socket timeout is used.The
IMAP4class supports thewithstatement. When usedlike this, the IMAP4LOGOUTcommand is issued automatically when thewithstatement exits. E.g.:>>>fromimaplibimportIMAP4>>>withIMAP4("domain.org")asM:...M.noop()...('OK', [b'Nothing Accomplished. d25if65hy903weo.87'])
在 3.5 版的變更:Support for the
withstatement was added.在 3.9 版的變更:新增timeout 選用參數。
Three exceptions are defined as attributes of theIMAP4 class:
- exceptionIMAP4.error¶
Exception raised on any errors. The reason for the exception is passed to theconstructor as a string.
- exceptionIMAP4.abort¶
IMAP4 server errors cause this exception to be raised. This is a sub-class of
IMAP4.error. Note that closing the instance and instantiating a new onewill usually allow recovery from this exception.
- exceptionIMAP4.readonly¶
This exception is raised when a writable mailbox has its status changed by theserver. This is a sub-class of
IMAP4.error. Some other client now haswrite permission, and the mailbox will need to be re-opened to re-obtain writepermission.
There's also a subclass for secure connections:
- classimaplib.IMAP4_SSL(host='',port=IMAP4_SSL_PORT,*,ssl_context=None,timeout=None)¶
This is a subclass derived from
IMAP4that connects over an SSLencrypted socket (to use this class you need a socket module that was compiledwith SSL support). Ifhost is not specified,''(the local host) is used.Ifport is omitted, the standard IMAP4-over-SSL port (993) is used.ssl_context is assl.SSLContextobject which allows bundlingSSL configuration options, certificates and private keys into a single(potentially long-lived) structure. Please readSecurity considerations forbest practices.The optionaltimeout parameter specifies a timeout in seconds for theconnection attempt. If timeout is not given or is
None, the global defaultsocket timeout is used.在 3.3 版的變更:新增ssl_context 參數。
在 3.4 版的變更:The class now supports hostname check with
ssl.SSLContext.check_hostnameandServer Name Indication (seessl.HAS_SNI).在 3.9 版的變更:新增timeout 選用參數。
在 3.12 版的變更:The deprecatedkeyfile andcertfile parameters have been removed.
The second subclass allows for connections created by a child process:
- classimaplib.IMAP4_stream(command)¶
This is a subclass derived from
IMAP4that connects to thestdin/stdoutfile descriptors created by passingcommand tosubprocess.Popen().
The following utility functions are defined:
- imaplib.Internaldate2tuple(datestr)¶
Parse an IMAP4
INTERNALDATEstring and return corresponding localtime. The return value is atime.struct_timetuple orNoneif the string has wrong format.
- imaplib.Int2AP(num)¶
Converts an integer into a bytes representation using characters from the set[
A..P].
- imaplib.ParseFlags(flagstr)¶
Converts an IMAP4
FLAGSresponse to a tuple of individual flags.
- imaplib.Time2Internaldate(date_time)¶
Convertdate_time to an IMAP4
INTERNALDATErepresentation.The return value is a string in the form:"DD-Mmm-YYYYHH:MM:SS+HHMM"(including double-quotes). Thedate_time argument canbe a number (int or float) representing seconds since epoch (asreturned bytime.time()), a 9-tuple representing local timean instance oftime.struct_time(as returned bytime.localtime()), an aware instance ofdatetime.datetime, or a double-quoted string. In the lastcase, it is assumed to already be in the correct format.
Note that IMAP4 message numbers change as the mailbox changes; in particular,after anEXPUNGE command performs deletions the remaining messages arerenumbered. So it is highly advisable to use UIDs instead, with the UID command.
At the end of the module, there is a test section that contains a more extensiveexample of usage.
也參考
Documents describing the protocol, sources for serversimplementing it, by the University of Washington's IMAP Information Centercan all be found at (Source Code)https://github.com/uw-imap/imap (Not Maintained).
IMAP4 物件¶
All IMAP4rev1 commands are represented by methods of the same name, eitheruppercase or lowercase.
All arguments to commands are converted to strings, except forAUTHENTICATE,and the last argument toAPPEND which is passed as an IMAP4 literal. Ifnecessary (the string contains IMAP4 protocol-sensitive characters and isn'tenclosed with either parentheses or double quotes) each string is quoted.However, thepassword argument to theLOGIN command is always quoted. Ifyou want to avoid having an argument string quoted (eg: theflags argument toSTORE) then enclose the string in parentheses (eg:r'(\Deleted)').
Most commands return a tuple:(type,[data,...]) wheretype is usually'OK' or'NO', anddata is either the text from the command response,or mandated results from the command. Eachdata is either abytes, or atuple. If a tuple, then the first part is the header of the response, and thesecond part contains the data (ie: 'literal' value).
Themessage_set options to commands below is a string specifying one or moremessages to be acted upon. It may be a simple message number ('1'), a rangeof message numbers ('2:4'), or a group of non-contiguous ranges separated bycommas ('1:3,6:9'). A range can contain an asterisk to indicate an infiniteupper bound ('3:*').
IMAP4 實例擁有以下方法:
- IMAP4.append(mailbox,flags,date_time,message)¶
Appendmessage to named mailbox.
- IMAP4.authenticate(mechanism,authobject)¶
Authenticate command --- requires response processing.
mechanism specifies which authentication mechanism is to be used - it shouldappear in the instance variable
capabilitiesin the formAUTH=mechanism.authobject must be a callable object:
data=authobject(response)
It will be called to process server continuation responses; theresponseargument it is passed will be
bytes. It should returnbytesdatathat will be base64 encoded and sent to the server. It should returnNoneif the client abort response*should be sent instead.在 3.5 版的變更:string usernames and passwords are now encoded to
utf-8instead ofbeing limited to ASCII.
- IMAP4.check()¶
Checkpoint mailbox on server.
- IMAP4.close()¶
Close currently selected mailbox. Deleted messages are removed from writablemailbox. This is the recommended command before
LOGOUT.
- IMAP4.copy(message_set,new_mailbox)¶
Copymessage_set messages onto end ofnew_mailbox.
- IMAP4.create(mailbox)¶
Create new mailbox namedmailbox.
- IMAP4.delete(mailbox)¶
Delete old mailbox namedmailbox.
- IMAP4.deleteacl(mailbox,who)¶
Delete the ACLs (remove any rights) set for who on mailbox.
- IMAP4.enable(capability)¶
Enablecapability (seeRFC 5161). Most capabilities do not need to beenabled. Currently only the
UTF8=ACCEPTcapability is supported(seeRFC 6855).
- IMAP4.expunge()¶
Permanently remove deleted items from selected mailbox. Generates an
EXPUNGEresponse for each deleted message. Returned data contains a list ofEXPUNGEmessage numbers in order received.
- IMAP4.fetch(message_set,message_parts)¶
Fetch (parts of) messages.message_parts should be a string of message partnames enclosed within parentheses, eg:
"(UIDBODY[TEXT])". Returned dataare tuples of message part envelope and data.
- IMAP4.getacl(mailbox)¶
Get the
ACLs formailbox. The method is non-standard, but is supportedby theCyrusserver.
- IMAP4.getannotation(mailbox,entry,attribute)¶
Retrieve the specified
ANNOTATIONs formailbox. The method isnon-standard, but is supported by theCyrusserver.
- IMAP4.getquota(root)¶
Get the
quotaroot's resource usage and limits. This method is part of theIMAP4 QUOTA extension defined in rfc2087.
- IMAP4.getquotaroot(mailbox)¶
Get the list of
quotarootsfor the namedmailbox. This method is partof the IMAP4 QUOTA extension defined in rfc2087.
- IMAP4.idle(duration=None)¶
Return an
Idler: an iterable context manager implementing theIMAP4IDLEcommand as defined inRFC 2177.The returned object sends the
IDLEcommand when activated by thewithstatement, produces IMAP untagged responses via theiterator protocol, and sendsDONEupon context exit.All untagged responses that arrive after sending the
IDLEcommand(including any that arrive before the server acknowledges the command) willbe available via iteration. Any leftover responses (those not iterated inthewithcontext) can be retrieved in the usual way afterIDLEends, usingIMAP4.response().Responses are represented as
(type,[data,...])tuples, as describedinIMAP4 Objects.Theduration argument sets a maximum duration (in seconds) to keep idling,after which any ongoing iteration will stop. It can be an
intorfloat, orNonefor no time limit.Callers wishing to avoid inactivity timeouts on servers that impose themshould keep this at most 29 minutes (1740 seconds).Requires a socket connection;duration must beNoneonIMAP4_streamconnections.>>>withM.idle(duration=29*60)asidler:...fortyp,datainidler:...print(typ,data)...EXISTS [b'1']RECENT [b'1']
- Idler.burst(interval=0.1)¶
Yield a burst of responses no more thaninterval seconds apart(expressed as an
intorfloat).Thisgenerator is an alternative to iterating one response at atime, intended to aid in efficient batch processing. It retrieves thenext response along with any immediately available subsequent responses.(For example, a rapid series of
EXPUNGEresponses after a bulkdelete.)Requires a socket connection; does not work on
IMAP4_streamconnections.>>>withM.idle()asidler:...# get a response and any others following by < 0.1 seconds...batch=list(idler.burst())...print(f'processing{len(batch)} responses...')...print(batch)...processing 3 responses...[('EXPUNGE', [b'2']), ('EXPUNGE', [b'1']), ('RECENT', [b'0'])]
小訣竅
The
IDLEcontext's maximum duration, as passed toIMAP4.idle(), is respected when waiting for the first responsein a burst. Therefore, an expiredIdlerwill cause thisgenerator to return immediately without producing anything. Callersshould consider this if using it in a loop.
備註
The iterator returned by
IMAP4.idle()is usable only within awithstatement. Before or after that context, unsolicitedresponses are collected internally whenever a command finishes, and canbe retrieved withIMAP4.response().備註
The
Idlerclass name and structure are internal interfaces,subject to change. Calling code can rely on its context management,iteration, and public method to remain stable, but should not subclass,instantiate, compare, or otherwise directly reference the class.在 3.14 版被加入.
- IMAP4.list([directory[,pattern]])¶
List mailbox names indirectory matchingpattern.directory defaults tothe top-level mail folder, andpattern defaults to match anything. Returneddata contains a list of
LISTresponses.
- IMAP4.login(user,password)¶
Identify the client using a plaintext password. Thepassword will be quoted.
- IMAP4.login_cram_md5(user,password)¶
Force use of
CRAM-MD5authentication when identifying the client to protectthe password. Will only work if the serverCAPABILITYresponse includes thephraseAUTH=CRAM-MD5.在 3.14 版的變更:An
IMAP4.erroris raised if MD5 support is not available.
- IMAP4.logout()¶
Shutdown connection to server. Returns server
BYEresponse.在 3.8 版的變更:The method no longer ignores silently arbitrary exceptions.
- IMAP4.lsub(directory='""',pattern='*')¶
List subscribed mailbox names in directory matching pattern.directorydefaults to the top level directory andpattern defaults to match any mailbox.Returned data are tuples of message part envelope and data.
- IMAP4.myrights(mailbox)¶
Show my ACLs for a mailbox (i.e. the rights that I have on mailbox).
- IMAP4.noop()¶
Send
NOOPto server.
- IMAP4.open(host,port,timeout=None)¶
Opens socket toport athost. The optionaltimeout parameterspecifies a timeout in seconds for the connection attempt.If timeout is not given or is
None, the global default socket timeoutis used. Also note that if thetimeout parameter is set to be zero,it will raise aValueErrorto reject creating a non-blocking socket.This method is implicitly called by theIMAP4constructor.The connection objects established by this method will be used intheIMAP4.read(),IMAP4.readline(),IMAP4.send(),andIMAP4.shutdown()methods. You may override this method.引發一個附帶引數
self、host、port的稽核事件imaplib.open。在 3.9 版的變更:新增timeout 參數。
- IMAP4.partial(message_num,message_part,start,length)¶
Fetch truncated part of a message. Returned data is a tuple of message partenvelope and data.
- IMAP4.proxyauth(user)¶
Assume authentication asuser. Allows an authorised administrator to proxyinto any user's mailbox.
- IMAP4.read(size)¶
Readssize bytes from the remote server. You may override this method.
- IMAP4.readline()¶
Reads one line from the remote server. You may override this method.
- IMAP4.recent()¶
Prompt server for an update. Returned data is
Noneif no new messages, elsevalue ofRECENTresponse.
- IMAP4.rename(oldmailbox,newmailbox)¶
Rename mailbox namedoldmailbox tonewmailbox.
- IMAP4.response(code)¶
Return data for responsecode if received, or
None. Returns the givencode, instead of the usual type.
- IMAP4.search(charset,criterion[,...])¶
Search mailbox for matching messages.charset may be
None, in which casenoCHARSETwill be specified in the request to the server. The IMAPprotocol requires that at least one criterion be specified; an exception will beraised when the server returns an error.charset must beNoneiftheUTF8=ACCEPTcapability was enabled using theenable()command.範例:
# M is a connected IMAP4 instance...typ,msgnums=M.search(None,'FROM','"LDJ"')# or:typ,msgnums=M.search(None,'(FROM "LDJ")')
- IMAP4.select(mailbox='INBOX',readonly=False)¶
Select a mailbox. Returned data is the count of messages inmailbox(
EXISTSresponse). The defaultmailbox is'INBOX'. If thereadonlyflag is set, modifications to the mailbox are not allowed.
- IMAP4.send(data)¶
Sends
datato the remote server. You may override this method.引發一個附帶引數
self、data的稽核事件imaplib.send。
- IMAP4.setacl(mailbox,who,what)¶
Set an
ACLformailbox. The method is non-standard, but is supported bytheCyrusserver.
- IMAP4.setannotation(mailbox,entry,attribute[,...])¶
Set
ANNOTATIONs formailbox. The method is non-standard, but issupported by theCyrusserver.
- IMAP4.setquota(root,limits)¶
Set the
quotaroot's resourcelimits. This method is part of the IMAP4QUOTA extension defined in rfc2087.
- IMAP4.shutdown()¶
Close connection established in
open. This method is implicitlycalled byIMAP4.logout(). You may override this method.
- IMAP4.socket()¶
Returns socket instance used to connect to server.
- IMAP4.sort(sort_criteria,charset,search_criterion[,...])¶
The
sortcommand is a variant ofsearchwith sorting semantics for theresults. Returned data contains a space separated list of matching messagenumbers.Sort has two arguments before thesearch_criterion argument(s); aparenthesized list ofsort_criteria, and the searchingcharset. Note thatunlike
search, the searchingcharset argument is mandatory. There is alsoauidsortcommand which corresponds tosortthe way thatuidsearchcorresponds tosearch. Thesortcommand first searches the mailbox formessages that match the given searching criteria using the charset argument forthe interpretation of strings in the searching criteria. It then returns thenumbers of matching messages.This is an
IMAP4rev1extension command.
- IMAP4.starttls(ssl_context=None)¶
Send a
STARTTLScommand. Thessl_context argument is optionaland should be assl.SSLContextobject. This will enableencryption on the IMAP connection. Please readSecurity considerations forbest practices.在 3.2 版被加入.
在 3.4 版的變更:The method now supports hostname check with
ssl.SSLContext.check_hostnameandServer Name Indication (seessl.HAS_SNI).
- IMAP4.status(mailbox,names)¶
Request named status conditions formailbox.
- IMAP4.store(message_set,command,flag_list)¶
Alters flag dispositions for messages in mailbox.command is specified bysection 6.4.6 ofRFC 2060 as being one of "FLAGS", "+FLAGS", or "-FLAGS",optionally with a suffix of ".SILENT".
For example, to set the delete flag on all messages:
typ,data=M.search(None,'ALL')fornumindata[0].split():M.store(num,'+FLAGS','\\Deleted')M.expunge()
備註
Creating flags containing ']' (for example: "[test]") violatesRFC 3501 (the IMAP protocol). However, imaplib has historicallyallowed creation of such tags, and popular IMAP servers, such as Gmail,accept and produce such flags. There are non-Python programs which alsocreate such tags. Although it is an RFC violation and IMAP clients andservers are supposed to be strict, imaplib still continues to allowsuch tags to be created for backward compatibility reasons, and as ofPython 3.6, handles them if they are sent from the server, since thisimproves real-world compatibility.
- IMAP4.subscribe(mailbox)¶
Subscribe to new mailbox.
- IMAP4.thread(threading_algorithm,charset,search_criterion[,...])¶
The
threadcommand is a variant ofsearchwith threading semantics forthe results. Returned data contains a space separated list of thread members.Thread members consist of zero or more messages numbers, delimited by spaces,indicating successive parent and child.
Thread has two arguments before thesearch_criterion argument(s); athreading_algorithm, and the searchingcharset. Note that unlike
search, the searchingcharset argument is mandatory. There is also auidthreadcommand which corresponds tothreadthe way thatuidsearchcorresponds tosearch. Thethreadcommand first searches themailbox for messages that match the given searching criteria using thecharsetargument for the interpretation of strings in the searching criteria. It thenreturns the matching messages threaded according to the specified threadingalgorithm.This is an
IMAP4rev1extension command.
- IMAP4.uid(command,arg[,...])¶
Execute command args with messages identified by UID, rather than messagenumber. Returns response appropriate to command. At least one argument must besupplied; if none are provided, the server will return an error and an exceptionwill be raised.
- IMAP4.unsubscribe(mailbox)¶
Unsubscribe from old mailbox.
- IMAP4.unselect()¶
imaplib.IMAP4.unselect()frees server's resources associated with theselected mailbox and returns the server to the authenticatedstate. This command performs the same actions asimaplib.IMAP4.close(), exceptthat no messages are permanently removed from the currentlyselected mailbox.在 3.9 版被加入.
- IMAP4.xatom(name[,...])¶
Allow simple extension commands notified by server in
CAPABILITYresponse.
The following attributes are defined on instances ofIMAP4:
- IMAP4.PROTOCOL_VERSION¶
The most recent supported protocol in the
CAPABILITYresponse from theserver.
- IMAP4.debug¶
Integer value to control debugging output. The initialize value is taken fromthe module variable
Debug. Values greater than three trace each command.
IMAP4 範例¶
Here is a minimal example (without error checking) that opens a mailbox andretrieves and prints all messages:
importgetpass,imaplibM=imaplib.IMAP4(host='example.org')M.login(getpass.getuser(),getpass.getpass())M.select()typ,data=M.search(None,'ALL')fornumindata[0].split():typ,data=M.fetch(num,'(RFC822)')print('Message%s\n%s\n'%(num,data[0][1]))M.close()M.logout()