a �DOgx��+@s�dZdZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddl m Z m Z m Z ddlmZzddlZdZWney�dZYn0gd�Zd ZdZd Zd Zd Zd Zddddddddddddddddddddddddddddddddddddddddddd�*Ze�d�Ze�d�Ze�d�Ze�dej�Z e�d�Z!e�d�Z"e�d�Z#e�dej�Z$dZ%dZ&Gdd�d�Z'e�r�Gdd�de'�Z(e�)d�Gd d!�d!e'�Z*Gd"d#�d#�Z+d$�,d%�Z-d&d'�e.e-d(d��D�Z/d)d*�Z0d+d,�Z1d-d.�Z2d/d0�Z3e4d1k�r�ddl5Z5ddl6Z6ze5�5ej7d(d�d2�\Z8Z9Wn0e5j:�yjZ;zd3\Z8Z9WYdZ;[;n dZ;[;00dZe;�Zne=d5k�rte;Zd?d@dAddeCffdBdCdDdEdFdGdHdIdJfZDdKdLdMdNd@dddeCffdIdOfZEdPdQ�ZF�ze<�r\e*e<�ZGne'e?�ZGeGjHdRk�r|eDd(d�ZDeG�IdSeGjJ�eG�IdTeGjKf�eDD]\ZLZ9eFeLe9��q�eFdUdV�D]�qeFdZd[d\eSdXd]f��qeTd^�Wn.eTd_�e�s�eTd`ej7d��Yn0dS)az�IMAP4 client. Based on RFC 2060. Public class: IMAP4 Public variable: Debug Public functions: Internaldate2tuple Int2AP ParseFlags Time2Internaldate z2.58�N)�datetime�timezone� timedelta)�DEFAULT_BUFFER_SIZETF)�IMAP4� IMAP4_stream�Internaldate2tuple�Int2AP� ParseFlags�Time2Internaldate� �i�)Z IMAP4REV1ri@B)�AUTH�SELECTED)�NONAUTH)rrr�LOGOUT)r)r)*�APPEND� AUTHENTICATE� CAPABILITY�CHECK�CLOSE�COPY�CREATE�DELETE� DELETEACL�ENABLE�EXAMINE�EXPUNGE�FETCH�GETACL� GETANNOTATION�GETQUOTA� GETQUOTAROOT�MYRIGHTS�LIST�LOGINr�LSUBZMOVE� NAMESPACE�NOOP�PARTIAL� PROXYAUTH�RENAME�SEARCH�SELECT�SETACL� SETANNOTATION�SETQUOTA�SORT�STARTTLS�STATUS�STORE� SUBSCRIBE�THREAD�UID� UNSUBSCRIBE�UNSELECTs\+( (?P.*))?s.*FLAGS \((?P[^\)]*)\)s�.*INTERNALDATE "(?P[ 0123][0-9])-(?P[A-Z][a-z][a-z])-(?P[0-9][0-9][0-9][0-9]) (?P[0-9][0-9]):(?P[0-9][0-9]):(?P[0-9][0-9]) (?P[-+])(?P[0-9][0-9])(?P[0-9][0-9])"s.*{(?P\d+)}$s \r\n|\r|\ns%\[(?P[A-Z-]+)( (?P.*))?\]s$\* (?P[A-Z-]+)( (?P.*))?s3\* (?P\d+) (?P[A-Z-]+)( (?P.*))?c@s�eZdZdZGdd�de�ZGdd�de�ZGdd�de�Zded fd d �Z d d �Z dd�Z dd�Z dd�Z dd�Zdd�Zdd�Zded fdd�Zdd�Zdd�Zd d!�Zd"d#�Zd$d%�Zd&d'�Zd(d)�Zd*d+�Zd,d-�Zd.d/�Zd0d1�Zd2d3�Zd4d5�Zd6d7�Zd8d9�Z d:d;�Z!dd?�Z#d@dA�Z$dBdC�Z%dDdE�Z&dFdG�Z'dHdI�Z(d�dLdM�Z)dNdO�Z*dPdQ�Z+dRdS�Z,dTdU�Z-d�dVdW�Z.dXdY�Z/dZd[�Z0d\d]�Z1d^d_�Z2d`da�Z3dbdc�Z4ddde�Z5d�dhdi�Z6djdk�Z7dldm�Z8dndo�Z9dpdq�Z:d�drds�Z;dtdu�Zdzd{�Z?d|d}�Z@d~d�ZAd�d��ZBd�d��ZCd�d��ZDd�d��ZEd�d��ZFd�d��ZGd�d��ZHd�d��ZId�d�d��ZJd�d��ZKd�d��ZLd�d��ZMd�d��ZNd�d��ZOd�d��ZPd S)�ra�IMAP4 client class. Instantiate with: IMAP4([host[, port[, timeout=None]]]) host - host's name (default: localhost); port - port number (default: standard IMAP4 port). timeout - socket timeout (default: None) If timeout is not given or is None, the global default socket timeout is used All IMAP4rev1 commands are supported by methods of the same name (in lower-case). All arguments to commands are converted to strings, except for AUTHENTICATE, and the last argument to APPEND which is passed as an IMAP4 literal. If necessary (the string contains any non-printing characters or white-space and isn't enclosed with either parentheses or double quotes) each string is quoted. However, the 'password' argument to the LOGIN command is always quoted. If you want to avoid having an argument string quoted (eg: the 'flags' argument to STORE) then enclose the string in parentheses (eg: "(\Deleted)"). Each command returns a tuple: (type, [data, ...]) where 'type' is usually 'OK' or 'NO', and 'data' is either the text from the tagged response, or untagged results from command. Each 'data' is either a string, or a tuple. If a tuple, then the first part is the header of the response, and the second part contains the data (ie: 'literal' value). Errors raise the exception class .error(""). IMAP4 server errors raise .abort(""), which is a sub-class of 'error'. Mailbox status changes from READ-WRITE to READ-ONLY raise the exception class .readonly(""), which is a sub-class of 'abort'. "error" exceptions imply a program error. "abort" exceptions imply the connection should be reset, and the command re-tried. "readonly" exceptions imply the command should be re-tried. Note: to use this module, you must read the RFCs pertaining to the IMAP4 protocol, as the semantics of the arguments to each IMAP4 command are left to the invoker, not to mention the results. Also, most IMAP servers implement a sub-set of the commands available here. c@s eZdZdS)z IMAP4.errorN��__name__� __module__� __qualname__�r>r>�/usr/lib64/python3.9/imaplib.py�error��r@c@s eZdZdS)z IMAP4.abortNr:r>r>r>r?�abort�rArBc@s eZdZdS)zIMAP4.readonlyNr:r>r>r>r?�readonly�rArC�Nc Cs�t|_d|_d|_i|_i|_d|_d|_d|_d|_ |� �|� |||�z |� �Wn4t y�z |��Wnty�Yn0�Yn0dS)NrrDFr)�Debug�debug�state�literal�tagged_commands�untagged_responses�continuation_response� is_readonly�tagnum�_tls_established� _mode_ascii�open�_connect� Exception�shutdown�OSError��self�host�port�timeoutr>r>r?�__init__�s&    zIMAP4.__init__cCs0d|_d|_t�ttj�|_t�ttj�|_dS)NF�ascii) � utf8_enabled� _encoding�re�compile�_Literal�ASCII�Literal�_Untagged_status�Untagged_status�rVr>r>r?rO�szIMAP4._mode_asciicCs(d|_d|_t�t�|_t�t�|_dS)NT�utf-8)r\r]r^r_r`rbrcrdrer>r>r?� _mode_utf8�s zIMAP4._mode_utf8cCs�tt�dd��|_t�d|jdtj�|_|� �|_ d|j vrHd|_ nd|j vrZd|_ n |� |j ��|��tD]}||jvr�qr||_dS|� d ��dS) Nii��s(?Ps"\d+) (?P[A-Z]+) (?P.*)ZPREAUTHr�OKrzserver not IMAP4 compliant)r �random�randint�tagprer^r_ra�tagre� __version__� _get_responseZwelcomerJrGr@�_get_capabilities�AllowedVersions� capabilities�PROTOCOL_VERSION)rV�versionr>r>r?rQ�s*���     zIMAP4._connectcCs&|tvrt||���Std|��dS)NzUnknown IMAP4 command: '%s')�Commands�getattr�lower�AttributeError)rV�attrr>r>r?� __getattr__ szIMAP4.__getattr__cCs|S�Nr>rer>r>r?� __enter__szIMAP4.__enter__cGs2|jdkrdSz |��Wnty,Yn0dS)Nr)rG�logoutrT)rV�argsr>r>r?�__exit__s    zIMAP4.__exit__cCs`|dur|std��|jsdn|j}t�d||j|j�||jf}|durVt�||�St�|�S)Nz0Non-blocking socket (timeout=0) is not supportedz imaplib.open)� ValueErrorrW�sys�auditrX�socket�create_connection)rVrYrW�addressr>r>r?�_create_socket#s   zIMAP4._create_socketcCs*||_||_|�|�|_|j�d�|_dS)z�Setup connection to remote server on "host:port" (default: localhost:standard IMAP4 port). This connection will be used by the routines: read, readline, send, shutdown. �rbN)rWrXr��sock�makefile�filerUr>r>r?rP0s z IMAP4.opencCs |j�|�S�zRead 'size' bytes from remote.)r��read�rV�sizer>r>r?r�<sz IMAP4.readcCs.|j�td�}t|�tkr*|�dt��|S)�Read line from remote.�zgot more than %d bytes)r��readline�_MAXLINE�lenr@�rV�liner>r>r?r�As zIMAP4.readlinecCst�d||�|j�|�dS)�Send data to remote.z imaplib.sendN)r�r�r��sendall�rV�datar>r>r?�sendIsz IMAP4.sendc Cs�|j��zdz|j�tj�WnBty`}z*|jtjkrLt |dd�dkrL�WYd}~n d}~00W|j��n |j��0dS)� Close I/O established in "open".�winerrorri&'N) r��closer�rSr�� SHUT_RDWRrT�errnoZENOTCONNru)rV�excr>r>r?rSOs  �zIMAP4.shutdowncCs|jS)zfReturn socket instance used to connect to IMAP4 server. socket = .socket() )r�rer>r>r?r�_sz IMAP4.socketcCsBd}|�ddg|�\}}|dr(||fS|��\}}|�|||�S)aReturn most recent 'RECENT' responses if any exist, else prompt server for an update using the 'NOOP' command. (typ, [data]) = .recent() 'data' is None if no new messages, else list of RECENT responses, most recent last. ZRECENTrhN�����)�_untagged_response�noop�rV�name�typ�datr>r>r?�recentks  z IMAP4.recentcCs|�|dg|���S)z�Return data for response 'code' if received, or None. Old value for response 'code' is cleared. (code, [data]) = .response(code) N)r��upper)rV�coder>r>r?�response|szIMAP4.responsecCsxd}|s d}|r.|d|dfdkr2d|}nd}|r@t|�}nd}t�t|�}|jrbd|d }||_|�||||�S) z�Append message to named mailbox. (typ, [data]) = .append(mailbox, flags, date_time, message) All args except `message' can be None. r�INBOXrr���(�)�(%s)NsUTF8 (�))r �MapCRLF�sub�CRLFr\rH�_simple_command)rV�mailbox�flags� date_time�messager�rHr>r>r?�append�s    z IMAP4.appendcCsP|��}t|�j|_|�d|�\}}|dkrB|�|d�dd���d|_||fS)asAuthenticate command - requires response processing. 'mechanism' specifies which authentication mechanism is to be used - it must appear in .capabilities in the form AUTH=. 'authobject' must be a callable object: data = authobject(response) It will be called to process server continuation responses; the response argument it is passed will be a bytes. It should return bytes data that will be base64 encoded and sent to the server. It should return None if the client abort response '*' should be sent instead. rrhr�rf�replacer)r��_Authenticator�processrHr�r@�decoderG)rVZ mechanismZ authobject�mechr�r�r>r>r?� authenticate�s zIMAP4.authenticatecCs d}|�|�\}}|�|||�S)zT(typ, [data]) = .capability() Fetch capabilities list from server.r�r�r�r�r>r>r?� capability�szIMAP4.capabilitycCs |�d�S)zRCheckpoint mailbox on server. (typ, [data]) = .check() r�r�rer>r>r?�check�sz IMAP4.checkcCs*z|�d�\}}Wd|_nd|_0||fS)z�Close currently selected mailbox. Deleted messages are removed from writable mailbox. This is the recommended command before 'LOGOUT'. (typ, [data]) = .close() rr�r�rG�rVr�r�r>r>r?r��sz IMAP4.closecCs|�d||�S)z�Copy 'message_set' messages onto end of 'new_mailbox'. (typ, [data]) = .copy(message_set, new_mailbox) rr�)rV� message_setZ new_mailboxr>r>r?�copy�sz IMAP4.copycCs |�d|�S)zPCreate new mailbox. (typ, [data]) = .create(mailbox) rr��rVr�r>r>r?�create�sz IMAP4.createcCs |�d|�S)zPDelete old mailbox. (typ, [data]) = .delete(mailbox) rr�r�r>r>r?�delete�sz IMAP4.deletecCs|�d||�S)z�Delete the ACLs (remove any rights) set for who on mailbox. (typ, [data]) = .deleteacl(mailbox, who) rr�)rVr��whor>r>r?� deleteacl�szIMAP4.deleteaclcCsHd|jvrt�d��|�d|�\}}|dkr@d|��vr@|��||fS)zlSend an RFC5161 enable string to the server. (typ, [data]) = .enable(capability) rzServer does not support ENABLErhz UTF8=ACCEPT)rqrr@r�r�rg)rVr�r�r�r>r>r?�enable�s   z IMAP4.enablecCs d}|�|�\}}|�|||�S)z�Permanently remove deleted items from selected mailbox. Generates 'EXPUNGE' response for each deleted message. (typ, [data]) = .expunge() 'data' is list of 'EXPUNGE'd message numbers in order received. rr�r�r>r>r?�expunge s z IMAP4.expungecCs$d}|�|||�\}}|�|||�S)a#Fetch (parts of) messages. (typ, [data, ...]) = .fetch(message_set, message_parts) 'message_parts' should be a string of selected parts enclosed in parentheses, eg: "(UID BODY[TEXT])". 'data' are tuples of message part envelope and data. rr�)rVr�Z message_partsr�r�r�r>r>r?�fetchs z IMAP4.fetchcCs|�d|�\}}|�||d�S)zXGet the ACLs for a mailbox. (typ, [data]) = .getacl(mailbox) rZACLr��rVr�r�r�r>r>r?�getacl(sz IMAP4.getaclcCs"|�d|||�\}}|�||d�S)za(typ, [data]) = .getannotation(mailbox, entry, attribute) Retrieve ANNOTATIONs.r � ANNOTATIONr�)rVr��entryZ attributer�r�r>r>r?� getannotation1szIMAP4.getannotationcCs|�d|�\}}|�||d�S)z�Get the quota root's resource usage and limits. Part of the IMAP4 QUOTA extension defined in rfc2087. (typ, [data]) = .getquota(root) r!�QUOTAr�)rV�rootr�r�r>r>r?�getquota9szIMAP4.getquotacCs@|�d|�\}}|�||d�\}}|�||d�\}}|||gfS)z�Get the list of quota roots for the named mailbox. (typ, [[QUOTAROOT responses...], [QUOTA responses]]) = .getquotaroot(mailbox) r"r�Z QUOTAROOTr�)rVr�r�r�ZquotaZ quotarootr>r>r?� getquotarootDszIMAP4.getquotaroot�""�*cCs$d}|�|||�\}}|�|||�S)z�List mailbox names in directory matching pattern. (typ, [data]) = .list(directory='""', pattern='*') 'data' is list of LIST responses. r$r��rVZ directory�patternr�r�r�r>r>r?�listOsz IMAP4.listcCs<|�d||�|��\}}|dkr.|�|d��d|_||fS)z�Identify client using plaintext password. (typ, [data]) = .login(user, password) NB: 'password' will be quoted. r%rhr�r)r��_quoter@rG)rV�user�passwordr�r�r>r>r?�login[s z IMAP4.logincCs|||_|_|�d|j�S)zr Force use of CRAM-MD5 authentication. (typ, [data]) = .login_cram_md5(user, password) zCRAM-MD5)r�r�r��_CRAM_MD5_AUTH)rVr�r�r>r>r?�login_cram_md5iszIMAP4.login_cram_md5cCsBddl}t|jt�r |j�d�n|j}|jd|�||d���S)z1 Authobject to use with CRAM-MD5 authentication. rNrf� �md5)�hmac� isinstancer��str�encoder��HMAC� hexdigest)rVZ challenger��pwdr>r>r?r�rs �zIMAP4._CRAM_MD5_AUTHcCs$d|_|�d�\}}|��||fS)z|Shutdown connection to server. (typ, [data]) = .logout() Returns server 'BYE' response. r)rGr�rSr�r>r>r?r|zsz IMAP4.logoutcCs$d}|�|||�\}}|�|||�S)z�List 'subscribed' mailbox names in directory matching pattern. (typ, [data, ...]) = .lsub(directory='""', pattern='*') 'data' are tuples of message part envelope and data. r&r�r�r>r>r?�lsub�sz IMAP4.lsubcCs|�d|�\}}|�||d�S)z�Show my ACLs for a mailbox (i.e. the rights that I have on mailbox). (typ, [data]) = .myrights(mailbox) r#r�r�r>r>r?�myrights�szIMAP4.myrightscCs d}|�|�\}}|�|||�S)zb Returns IMAP namespaces ala rfc2342 (typ, [data, ...]) = .namespace() r'r�r�r>r>r?� namespace�szIMAP4.namespacecCs |�d�S)zFSend NOOP command. (typ, [data]) = .noop() r(r�rer>r>r?r��sz IMAP4.noopcCs(d}|�|||||�\}}|�||d�S)z�Fetch truncated part of a message. (typ, [data, ...]) = .partial(message_num, message_part, start, length) 'data' is tuple of message part envelope and data. r)rr�)rVZ message_numZ message_part�start�lengthr�r�r�r>r>r?�partial�sz IMAP4.partialcCsd}|�d|�S)z�Assume authentication as "user". Allows an authorised administrator to proxy into any user's mailbox. (typ, [data]) = .proxyauth(user) r*r�)rVr�r�r>r>r?� proxyauth�s zIMAP4.proxyauthcCs|�d||�S)zkRename old mailbox name to new. (typ, [data]) = .rename(oldmailbox, newmailbox) r+r�)rVZ oldmailboxZ newmailboxr>r>r?�rename�sz IMAP4.renamecGsXd}|r4|jrt�d��|j|d|g|�R�\}}n|j|g|�R�\}}|�|||�S)z�Search mailbox for matching messages. (typ, [data]) = .search(charset, criterion, ...) 'data' is space separated list of matching message numbers. If UTF8 is enabled, charset MUST be None. r,z'Non-None charset not valid in UTF8 mode�CHARSET)r\rr@r�r�)rV�charsetZcriteriar�r�r�r>r>r?�search�s z IMAP4.searchr�FcCsvi|_||_|rd}nd}|�||�\}}|dkr@d|_||fSd|_d|jvrb|sb|�d|��||j�dd g�fS) atSelect a mailbox. Flush all untagged responses. (typ, [data]) = .select(mailbox='INBOX', readonly=False) 'data' is count of messages in mailbox ('EXISTS' response). Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY'), so other responses should be obtained via .response('FLAGS') etc. rr-rhrr� READ-ONLYz%s is not writable�EXISTSN)rJrLr�rGrC�get)rVr�rCr�r�r�r>r>r?�select�s  �z IMAP4.selectcCs|�d|||�S)zZSet a mailbox acl. (typ, [data]) = .setacl(mailbox, who, what) r.r�)rVr�r�Zwhatr>r>r?�setaclsz IMAP4.setaclcGs$|jdg|�R�\}}|�||d�S)z_(typ, [data]) = .setannotation(mailbox[, entry, attribute]+) Set ANNOTATIONs.r/r�r�)rVr}r�r�r>r>r?� setannotation szIMAP4.setannotationcCs |�d||�\}}|�||d�S)ziSet the quota root's resource limits. (typ, [data]) = .setquota(root, limits) r0r�r�)rVr�Zlimitsr�r�r>r>r?�setquotaszIMAP4.setquotacGsHd}|d|dfdkr d|}|j|||g|�R�\}}|�|||�S)z�IMAP4rev1 extension SORT command. (typ, [data]) = .sort(sort_criteria, charset, search_criteria, ...) r1rr�r�r�r�)rVZ sort_criteriar��search_criteriar�r�r�r>r>r?�sorts z IMAP4.sortcCs�d}ts|�d��|jr"|�d��||jvr6|�d��|durFt��}|�|�\}}|dkr�|j|j |j d�|_ |j � d�|_ d|_|� �n |�d ��|�|||�S) Nr2zSSL support missingzTLS session already establishedzTLS not supported by serverrh�Zserver_hostnamer�TzCouldn't establish TLS session)�HAVE_SSLr@rNrBrq�ssl�_create_stdlib_contextr�� wrap_socketr�rWr�r�ror�)rV� ssl_contextr�r�r�r>r>r?�starttls)s&    �  zIMAP4.starttlscCs$d}|�|||�\}}|�|||�S)zpRequest named status conditions for mailbox. (typ, [data]) = .status(mailbox, names) r3r�)rVr��namesr�r�r�r>r>r?�status@sz IMAP4.statuscCs>|d|dfdkrd|}|�d|||�\}}|�||d�S)z�Alters flag dispositions for messages in mailbox. (typ, [data]) = .store(message_set, command, flags) rr�r�r�r4rr�)rVr��commandr�r�r�r>r>r?�storeLsz IMAP4.storecCs |�d|�S)zYSubscribe to new mailbox. (typ, [data]) = .subscribe(mailbox) r5r�r�r>r>r?� subscribeWszIMAP4.subscribecGs,d}|j|||g|�R�\}}|�|||�S)z�IMAPrev1 extension THREAD command. (type, [data]) = .thread(threading_algorithm, charset, search_criteria, ...) r6r�)rVZthreading_algorithmr�r�r�r�r�r>r>r?�thread_sz IMAP4.threadc Gs�|��}|tvr|�d|��|jt|vrL|�d||jd�t|�f��d}|j||g|�R�\}}|dvrv|}nd}|�|||�S)z�Execute "command arg ..." with messages identified by UID, rather than message number. (typ, [data]) = .uid(command, arg1, arg2, ...) Returns response appropriate to 'command'. zUnknown IMAP4 UID command: %s�9command %s illegal in state %s, only allowed in states %s�, r7)r,r1r6r)r�rtr@rG�joinr�r�)rVr r}r�r�r�r>r>r?�uidis ��z IMAP4.uidcCs |�d|�S)z_Unsubscribe from old mailbox. (typ, [data]) = .unsubscribe(mailbox) r8r�r�r>r>r?� unsubscribe�szIMAP4.unsubscribecCs*z|�d�\}}Wd|_nd|_0||fS)aMFree server's resources associated with the selected mailbox and returns the server to the authenticated state. This command performs the same actions as CLOSE, except that no messages are permanently removed from the currently selected mailbox. (typ, [data]) = .unselect() r9rr�)rVr�r�r>r>r?�unselect�s zIMAP4.unselectcGs.|��}|tvr|jft|<|j|g|�R�S)aAllow simple extension commands notified by server in CAPABILITY response. Assumes command is legal in current state. (typ, [data]) = .xatom(name, arg, ...) Returns response appropriate to extension command `name'. )r�rtrGr��rVr�r}r>r>r?�xatom�s  z IMAP4.xatomcCs8|dur d}|j}||vr*||�|�n |g||<dS�NrA)rJr�r�)rVr�r��urr>r>r?�_append_untagged�s zIMAP4._append_untaggedcCs,|j�d�}|r(|�|d�|jd���dS)N�BYEr�r�)rJr�rBr�r])rV�byer>r>r?� _check_bye�s zIMAP4._check_byec Gs�|jt|vr4d|_|�d||jd�t|�f��dD]}||jvr8|j|=q8d|jvrj|jsj|�d��|��}t ||j �}|d|}|D]0}|dur�q�t |t �r�t ||j �}|d|}q�|j}|du�r d|_t |�t |j�ur�|}nd}|t dt|�|j �}z|�|t�Wn4t�yP} z|�d| ��WYd} ~ n d} ~ 00|du�r`|S|���r~|j|�r`|S�q`|�r�||j�}z|�|�|�t�Wn4t�y�} z|�d| ��WYd} ~ n d} ~ 00|�s`�q�q`|S) Nrr�rh�NO�BADr�z#mailbox status changed to READ-ONLY� z {%s}zsocket error: %s)rGrtrHr@rrJrLrC�_new_tag�bytesr]r�r��type�_commandr�r�r�rTrBrnrIrK) rVr�r}r��tagr��argrHZ literator�valr>r>r?r#�s` ��   �       $     $zIMAP4._commandc Cs�|dk}|s|��z|j||d�\}}Wnn|jyb}z|�d||f��WYd}~n@d}~0|jy�}z|�d||f��WYd}~n d}~00|s�|��|dkr�|�d|||f��||fS)Nr)� expect_byezcommand: %s => %srz%s command error: %s %s)r�_get_tagged_responserBr@)rVr�r$r|r�r�r&r>r>r?�_command_completes&(zIMAP4._command_completecCsJ|��\}}|dgkr |�d��t|d|j�}|��}t|���|_dS)Nz"no CAPABILITY response from serverr�)r�r@r�r]r��tuple�splitrqr�r>r>r?ro#s    zIMAP4._get_capabilitiescCs�|��}|�|j|�rp|j�d�}||jvr:|�d|��|j�d�}t||j�}|j�d�}||gf|j|<n�d}|�t |�s�|�|j |�r�|j�d�}|jdur�|�t |�r�|j�d�|_ dS|�d|��|j�d�}t||j�}|j�d�}|du�rd}|�r|d|}|�|j |��rZt|j�d ��}|�|�}|�|||f�|��}�q|�||�|d v�r�|�t|��r�|j�d�}t||j�}|�||j�d��|S) Nr$zunexpected tagged response: %rr"r�Zdata2zunexpected response: %rrArr�r)� _get_line�_matchrl�mo�grouprIrBr�r]�Untagged_responserd� ContinuationrKrb�intr�r� Response_code)rV�respr$r�r�Zdat2r�r�r>r>r?rn,sD                 zIMAP4._get_responsec Cs�|j|}|dur|j|=|S|rDd}|j�|d�}|durD||fS|��z |��Wq|jy�}z�WYd}~qd}~00qdS)Nr)rIrJ�poprrnrB)rVr$r'�resultr�rr&r>r>r?r(|s  zIMAP4._get_tagged_responsecCs>|��}|s|�d��|�d�s.|�d|��|dd�}|S)Nzsocket error: EOFr z#socket error: unterminated line: %r�����)r�rB�endswithr�r>r>r?r,�s   zIMAP4._get_linecCs|�|�|_|jduSrz)�matchr.)rVZcre�sr>r>r?r-�s z IMAP4._matchcCs2|jtt|j�|j�}|jd|_d|j|<|S)Nr�)rkr!r�rMr]rI)rVr$r>r>r?r �s  zIMAP4._new_tagcCs$|�dd�}|�dd�}d|dS)N�\z\\�"z\")r�)rVr%r>r>r?r��s  z IMAP4._quotecGs|�||j|g|�R��Srz)r)r#rr>r>r?r��szIMAP4._simple_commandcCs8|dkr||fS||jvr$|dgfS|j�|�}||fS)Nr)rJr5)rVr�r�r�r�r>r>r?r��s    zIMAP4._untagged_response)r�r�)r�r�)r�F)N)F)Ur;r<r=�__doc__rRr@rBrC� IMAP4_PORTrZrOrgrQryr{r~r�rPr�r�r�rSr�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r|r�r�r�r�r�r�r�r�r�r�r�r�rrr r r r rrrrrrr#r)rornr(r,r-r r�r�r��_mesgZ_dump_ur�_logZ print_logr>r>r>r?r�s�/*                     M P ! $rc@s>eZdZdZdeddddfdd�Zdd�Zdedfdd �ZdS) � IMAP4_SSLa�IMAP4 client class over SSL connection Instantiate with: IMAP4_SSL([host[, port[, keyfile[, certfile[, ssl_context[, timeout=None]]]]]]) host - host's name (default: localhost); port - port number (default: standard IMAP4 SSL port); keyfile - PEM formatted file that contains your private key (default: None); certfile - PEM formatted certificate chain file (default: None); ssl_context - a SSLContext object that contains your certificate chain and private key (default: None) Note: if ssl_context is provided, then parameters keyfile or certfile should not be set otherwise ValueError is raised. timeout - socket timeout (default: None) If timeout is not given or is None, the global default socket timeout is used for more documentation see the docstring of the parent class IMAP4. rDNcCs�|dur|durtd��|dur0|dur0td��|dus@|durVddl}|�dtd�||_||_|durxtj||d�}||_t � ||||�dS)Nz8ssl_context and keyfile arguments are mutually exclusivez9ssl_context and certfile arguments are mutually exclusiverzEkeyfile and certfile are deprecated, use a custom ssl_context instead�)�certfile�keyfile) r�warnings�warn�DeprecationWarningrDrCrrrrrZ)rVrWrXrDrCrrYrEr>r>r?rZs"��zIMAP4_SSL.__init__cCst�||�}|jj||jd�S)Nr)rr�rrrW)rVrYr�r>r>r?r�.s �zIMAP4_SSL._create_socketcCst�||||�dS)z�Setup connection to remote server on "host:port". (default: localhost:standard IMAP4 SSL port). This connection will be used by the routines: read, readline, send, shutdown. N)rrPrUr>r>r?rP3szIMAP4_SSL.open)r;r<r=r=�IMAP4_SSL_PORTrZr�rPr>r>r>r?rAs � rAc@sBeZdZdZdd�Zddd�Zdd�Zd d �Zd d �Zd d�Z dS)rz�IMAP4 client class over a stream Instantiate with: IMAP4_stream(command) "command" - a string that can be passed to subprocess.Popen() for more documentation see the docstring of the parent class IMAP4. cCs||_t�|�dSrz)r rrZ)rVr r>r>r?rZJszIMAP4_stream.__init__NcCsNd|_d|_d|_d|_tj|jttjtjddd�|_ |j j |_ |j j |_ dS)z�Setup a stream connection. This connection will be used by the routines: read, readline, send, shutdown. NT)�bufsize�stdin�stdout�shell� close_fds)rWrXr�r�� subprocess�Popenr r�PIPEr�rJ� writefilerK�readfilerUr>r>r?rPOs� zIMAP4_stream.opencCs |j�|�Sr�)rRr�r�r>r>r?r�_szIMAP4_stream.readcCs |j��S)r�)rRr�rer>r>r?r�dszIMAP4_stream.readlinecCs|j�|�|j��dS)r�N)rQ�write�flushr�r>r>r?r�is zIMAP4_stream.sendcCs"|j��|j��|j��dS)r�N)rRr�rQr��waitrer>r>r?rSos  zIMAP4_stream.shutdown)NNN) r;r<r=r=rZrPr�r�r�rSr>r>r>r?r>s  rc@s0eZdZdZdd�Zdd�Zdd�Zdd �Zd S) r�zcPrivate class to provide en/decoding for base64-based authentication conversation. cCs ||_dSrz)r�)rVZmechinstr>r>r?rZ}sz_Authenticator.__init__cCs&|�|�|��}|durdS|�|�S)N�*)r�r�r�)rVr��retr>r>r?r��sz_Authenticator.processcCsnd}t|t�r|�d�}|rjt|�dkrB|dd�}|dd�}n|}d}t�|�}|r||dd�}q|S)NrArf�0r�)r�r�r�r��binasciiZ b2a_base64)rV�inpZoup�t�er>r>r?r��s      z_Authenticator.encodecCs|sdSt�|�Sr)rYZ a2b_base64)rVrZr>r>r?r��sz_Authenticator.decodeN)r;r<r=r=rZr�r�r�r>r>r>r?r�ws r�z0 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Decr�cCsi|]\}}|��|d�qS)r�)r�)�.0�nr:r>r>r?� �rAr_r�c Cs�t�|�}|sdSt|�d�}|�d�}t|�d��}t|�d��}t|�d��}t|�d��}t|�d��}t|�d ��} t|�d ��} | d | d } |d kr�| } ||||||d d d f } t�| �| } t�| �S)z�Parse an IMAP4 INTERNALDATE string. Return corresponding local time. The return value is a time.struct_time tuple or None if the string has wrong format. N�mon�zonen�day�year�hour�min�sec�zoneh�zonem�<�-r�) � InternalDater9�Mon2numr/r2�calendarZtimegm�time� localtime)r4r.r`rarbrcrdrerfrgrh�zone�tt�utcr>r>r?r�s$  rcCs@d}d}tt|��}|rr>r?r �s  r cCs$t�|�}|sdSt|�d����S)z-Convert IMAP4 flags response to python tuple.r>r�)�Flagsr9r*r/r+)r4r.r>r>r?r �s r cCst|ttf�r"t�|tj���}n�t|t�r�z |j }WnXt y�t j r�|d}|dkrnt � t �|��d}t jt jf| }nt j }Yn0t|d�}t|dd�dt|�i�}nLt|t�r�|jdur�td��|}n*t|t�r�|d|dfd kr�|Std ��d �t|j�}|�|�S) a�Convert date_time to IMAP4 INTERNALDATE representation. Return string in form: '"DD-Mmm-YYYY HH:MM:SS +HHMM"'. The date_time argument can be a number (int or float) representing seconds since epoch (as returned by time.time()), a 9-tuple representing local time, an instance of time.struct_time (as returned by time.localtime()), an aware datetime instance or a double-quoted string. In the last case, it is assumed to already be in the correct format. �r�)ZsecondsN��tzinfozdate_time must be awarer)r<r<zdate_time not of a known typez"%d-{}-%Y %H:%M:%S %z")r�r2�floatrZ fromtimestamprrrZ astimezoner*� tm_gmtoffrwrn�daylightro�mktime�altzonerr{rr��format�MonthsZmonth�strftime)r�ZdtZgmtoff�dstZdelta�fmtr>r>r?r �s2 �       r �__main__zd:s:)r>r>z-dz-s)rDzIMAP password for %s on %s: � localhostzJFrom: %(user)s@localhost%(lf)sSubject: IMAP4 test%(lf)s%(lf)sdata...%(lf)s� )r�Zlfr�)r�)� /tmp/xxx 1)r�)r�z/tmp/yyy)r�� /tmp/yyz 2r�r�)r�)z/tmpzyy*)r�r�)r�)NZSUBJECT�test)r�)�1z(FLAGS INTERNALDATE RFC822))r )r��FLAGSz (\Deleted))r�r>)r�r>)r�r>)r�r>)r�r>)r�)Z UIDVALIDITY)r)r,ZALL)r�)r�)r|r>cCsLt�d||f�tt|�|�\}}t�d|||f�|dkrH|d�|S)Nz%s %sz %s => %s %srr)�Mr?ru)�cmdr}r�r�r>r>r?�runBs r�rzPROTOCOL_VERSION = %szCAPABILITIES = %rr�)z/tmp/zyy%z .*"([^"]+)"$r�r�rrz%sz:(FLAGS INTERNALDATE RFC822.SIZE RFC822.HEADER RFC822.TEXT)z All tests OK.z Tests failed.z8 If you would like to see debugging output, try: %s -d5 )Ur=rmrYr�rir^r�rNr�rnrmrrr�iorrr� ImportError�__all__r�rEr>rHrpr�rtr_r1rxrkrarbr�r3r0rdr`rcrrAr�rr�r+r�� enumeraterlrr r r r;�getoptZgetpass�argvZoptlistr}r@r&Zstream_command�optr2rWZgetuserZUSERZPASSWDZ test_mesgZ test_seq1Z test_seq2r�r�rGr?rrrqr��mlr9r.r/�pathr�r�printr>r>r>r?�sLH    �0     �6 9, #  )       ��           �  �