o
    “Hb^;  ã                   @   sh  d Z ddlZddlZddlZddlZzddlZdZW n ey%   dZY nw ddgZG dd„ de	ƒZ
dZd	Zd
ZdZee ZdZG dd„ dƒZerVG dd„ deƒZe d¡ edkr²ddlZeejd ƒZee ¡ ƒ e ejd ¡ e ejd ¡ e ¡  e ¡ \ZZeded ƒD ]Z e !e ¡\Z"Z#Z$ede  ƒ e#D ]Z%ede% ƒ qžedƒ qŒe &¡  dS dS )z@A POP3 client class.

Based on the J. Myers POP3 draft, Jan. 96
é    NTFÚPOP3Úerror_protoc                   @   s   e Zd ZdS )r   N)Ú__name__Ú
__module__Ú__qualname__© r   r   ú/usr/lib/python3.10/poplib.pyr      s    én   iã  ó   ó   
i   c                   @   s  e Zd ZdZdZeejfdd„Zdd„ Z	dd„ Z
d	d
„ Zdd„ Zdd„ Zdd„ Zdd„ Zdd„ Zdd„ Zdd„ Zdd„ Zdd„ Zdd„ Zd=d d!„Zd"d#„ Zd$d%„ Zd&d'„ Zd(d)„ Zd*d+„ Zd,d-„ Zd.d/„ Ze d0¡Z d1d2„ Z!d3d4„ Z"d=d5d6„Z#d7d8„ Z$d9d:„ Z%d=d;d<„Z&dS )>r   aP  This class supports both the minimal and optional command sets.
    Arguments can be strings or integers (where appropriate)
    (e.g.: retr(1) and retr('1') both work equally well.

    Minimal Command Set:
            USER name               user(name)
            PASS string             pass_(string)
            STAT                    stat()
            LIST [msg]              list(msg = None)
            RETR msg                retr(msg)
            DELE msg                dele(msg)
            NOOP                    noop()
            RSET                    rset()
            QUIT                    quit()

    Optional Commands (some servers support these):
            RPOP name               rpop(name)
            APOP name digest        apop(name, digest)
            TOP msg n               top(msg, n)
            UIDL [msg]              uidl(msg = None)
            CAPA                    capa()
            STLS                    stls()
            UTF8                    utf8()

    Raises one exception: 'error_proto'.

    Instantiate with:
            POP3(hostname, port=110)

    NB:     the POP protocol locks the mailbox from user
            authorization until QUIT, so be sure to get in, suck
            the messages, and quit, each time you access the
            mailbox.

            POP is a line-based protocol, which means large mail
            messages consume lots of python cycles reading them
            line-by-line.

            If it's available on your mail server, use IMAP4
            instead, it doesn't suffer from the two problems
            above.
    zUTF-8c                 C   sP   || _ || _d| _t d| ||¡ |  |¡| _| j d¡| _d| _	|  
¡ | _d S )NFzpoplib.connectÚrbr   )ÚhostÚportÚ_tls_establishedÚsysÚauditÚ_create_socketÚsockÚmakefileÚfileÚ
_debuggingÚ_getrespÚwelcome)Úselfr   r   Útimeoutr   r   r   Ú__init__b   s   zPOP3.__init__c                 C   s(   |d ur
|s
t dƒ‚t | j| jf|¡S )Nz0Non-blocking socket (timeout=0) is not supported)Ú
ValueErrorÚsocketZcreate_connectionr   r   )r   r   r   r   r   r   m   s   zPOP3._create_socketc                 C   s:   | j dkrtdt|ƒƒ t d| |¡ | j |t ¡ d S )Né   z*put*zpoplib.putline)r   ÚprintÚreprr   r   r   ZsendallÚCRLF©r   Úliner   r   r   Ú_putliner   s   zPOP3._putlinec                 C   s.   | j r
tdt|ƒƒ t|| jƒ}|  |¡ d S )Nz*cmd*)r   r   r    ÚbytesÚencodingr$   r"   r   r   r   Ú_putcmdz   s   zPOP3._putcmdc                 C   s    | j  td ¡}t|ƒtkrtdƒ‚| jdkrtdt|ƒƒ |s$tdƒ‚t|ƒ}|dd … tkr8|d d… |fS |d d… t	krH|dd… |fS |d d… |fS )Nr   zline too longz*get*z-ERR EOFéþÿÿÿéÿÿÿÿ)
r   ÚreadlineÚ_MAXLINEÚlenr   r   r   r    r!   ÚCR)r   r#   Úoctetsr   r   r   Ú_getline„   s   zPOP3._getlinec                 C   s:   |   ¡ \}}| jdkrtdt|ƒƒ | d¡st|ƒ‚|S )Nr   z*resp*ó   +)r/   r   r   r    Ú
startswithr   )r   ÚrespÚor   r   r   r   ™   s
   
zPOP3._getrespc                 C   sr   |   ¡ }g }d}|  ¡ \}}|dkr4| d¡r!|d }|dd … }|| }| |¡ |  ¡ \}}|dks|||fS )Nr   ó   .s   ..r   )r   r/   r1   Úappend)r   r2   Úlistr.   r#   r3   r   r   r   Ú_getlongresp£   s   

ú
zPOP3._getlongrespc                 C   ó   |   |¡ |  ¡ S ©N)r'   r   r"   r   r   r   Ú	_shortcmd³   ó   
zPOP3._shortcmdc                 C   r8   r9   )r'   r7   r"   r   r   r   Ú_longcmdº   r;   zPOP3._longcmdc                 C   s   | j S r9   )r   ©r   r   r   r   Ú
getwelcomeÁ   s   zPOP3.getwelcomec                 C   s
   || _ d S r9   )r   )r   Úlevelr   r   r   Úset_debuglevelÅ   s   
zPOP3.set_debuglevelc                 C   ó   |   d| ¡S )zVSend user name, return response

        (should indicate password required).
        zUSER %s©r:   ©r   Úuserr   r   r   rD   Ë   ó   z	POP3.userc                 C   rA   )z Send password, return response

        (response includes message count, mailbox size).

        NB: mailbox is locked by server from here to 'quit()'
        zPASS %srB   )r   Zpswdr   r   r   Úpass_Ó   s   z
POP3.pass_c                 C   sF   |   d¡}| ¡ }| jrtdt|ƒƒ t|d ƒ}t|d ƒ}||fS )z]Get mailbox status.

        Result is tuple of 2 ints (message count, mailbox size)
        ZSTATz*stat*r   é   )r:   Úsplitr   r   r    Úint)r   ZretvalZretsZnumMessagesZsizeMessagesr   r   r   ÚstatÝ   s   
z	POP3.statNc                 C   ó    |dur|   d| ¡S |  d¡S )a  Request listing, return result.

        Result without a message number argument is in form
        ['response', ['mesg_num octets', ...], octets].

        Result when a message number argument is given is a
        single response: the "scan listing" for that message.
        NzLIST %sZLIST©r:   r<   ©r   Úwhichr   r   r   r6   ê   s   	
z	POP3.listc                 C   rA   )zoRetrieve whole message number 'which'.

        Result is in form ['response', ['line', ...], octets].
        zRETR %s©r<   rM   r   r   r   Úretrø   rE   z	POP3.retrc                 C   rA   )zFDelete message number 'which'.

        Result is 'response'.
        zDELE %srB   rM   r   r   r   Údele   rE   z	POP3.delec                 C   ó
   |   d¡S )zXDoes nothing.

        One supposes the response indicates the server is alive.
        ZNOOPrB   r=   r   r   r   Únoop  s   
z	POP3.noopc                 C   rR   )z(Unmark all messages marked for deletion.ZRSETrB   r=   r   r   r   Úrset  s   
z	POP3.rsetc                 C   s   |   d¡}|  ¡  |S )zDSignoff: commit changes on server, unlock mailbox, close connection.ZQUIT)r:   Úclose)r   r2   r   r   r   Úquit  s   
z	POP3.quitc                 C   sB  zY| j }d| _ |dur| ¡  W | j}d| _|durXz8z| tj¡ W n! tyD } z|jtjkr:t	|ddƒdkr:‚ W Y d}~nd}~ww W | ¡  dS W | ¡  dS | ¡  w dS | j}d| _|dur z6z| tj¡ W n! tyŽ } z|jtjkr„t	|ddƒdkr„‚ W Y d}~nd}~ww W | ¡  w W | ¡  w | ¡  w w )z8Close the connection without assuming anything about it.NÚwinerrorr   i&'  )
r   rU   r   Zshutdownr   Z	SHUT_RDWRÚOSErrorÚerrnoZENOTCONNÚgetattr)r   r   r   Úexcr   r   r   rU     sP   €ÿ€úÿ	€ õþÿ€úÿ
	€ õz
POP3.closec                 C   rA   )zNot sure what this does.zRPOP %srB   rC   r   r   r   Úrpop7  s   z	POP3.rpops   \+OK.[^<]*(<.*>)c                 C   s\   t || jƒ}| j | j¡}|stdƒ‚ddl}| d¡| }| |¡ 	¡ }|  
d||f ¡S )a  Authorisation

        - only possible if server has supplied a timestamp in initial greeting.

        Args:
                user     - mailbox user;
                password - mailbox password.

        NB: mailbox is locked by server from here to 'quit()'
        z!-ERR APOP not supported by serverr   Nr   z
APOP %s %s)r%   r&   Ú	timestampÚmatchr   r   ÚhashlibÚgroupZmd5Z	hexdigestr:   )r   rD   ZpasswordZsecretÚmr_   Zdigestr   r   r   Úapop>  s   z	POP3.apopc                 C   s   |   d||f ¡S )z­Retrieve message header of message number 'which'
        and first 'howmuch' lines of message body.

        Result is in form ['response', ['line', ...], octets].
        z	TOP %s %srO   )r   rN   Zhowmuchr   r   r   ÚtopS  s   zPOP3.topc                 C   rK   )zìReturn message digest (unique id) list.

        If 'which', result contains unique id for that message
        in the form 'response mesgnum uid', otherwise result is
        the list ['response', ['mesgnum uid', ...], octets]
        NzUIDL %sZUIDLrL   rM   r   r   r   Úuidl\  s   
z	POP3.uidlc                 C   rR   )zITry to enter UTF-8 mode (see RFC 6856). Returns server response.
        ZUTF8rB   r=   r   r   r   Úutf8h  s   
z	POP3.utf8c                 C   sZ   dd„ }i }z|   d¡}|d }|D ]}||ƒ\}}|||< qW |S  ty,   tdƒ‚w )a   Return server capabilities (RFC 2449) as a dictionary
        >>> c=poplib.POP3('localhost')
        >>> c.capa()
        {'IMPLEMENTATION': ['Cyrus', 'POP3', 'server', 'v2.2.12'],
         'TOP': [], 'LOGIN-DELAY': ['0'], 'AUTH-RESP-CODE': [],
         'EXPIRE': ['NEVER'], 'USER': [], 'STLS': [], 'PIPELINING': [],
         'UIDL': [], 'RESP-CODES': []}
        >>>

        Really, according to RFC 2449, the cyrus folks should avoid
        having the implementation split into multiple arguments...
        c                 S   s"   |   d¡ ¡ }|d |dd … fS )NÚasciir   r   )ÚdecoderH   )r#   Zlstr   r   r   Ú	_parsecap{  s   zPOP3.capa.<locals>._parsecapZCAPAr   z!-ERR CAPA not supported by server)r<   r   )r   rh   Úcapsr2   ZrawcapsZcaplineZcapnmZcapargsr   r   r   Úcapan  s   

þþÿz	POP3.capac                 C   sx   t stdƒ‚| jrtdƒ‚|  ¡ }d|vrtdƒ‚|du r!t ¡ }|  d¡}|j| j| j	d| _| j 
d¡| _d| _|S )	z{Start a TLS session on the active connection as specified in RFC 2595.

                context - a ssl.SSLContext
        z-ERR TLS support missingú$-ERR TLS session already establishedZSTLSz!-ERR STLS not supported by serverN©Zserver_hostnamer   T)ÚHAVE_SSLr   r   rj   ÚsslÚ_create_stdlib_contextr:   Úwrap_socketr   r   r   r   )r   Úcontextri   r2   r   r   r   Ústls‹  s    
ÿz	POP3.stlsr9   )'r   r   r   Ú__doc__r&   Ú	POP3_PORTr   Ú_GLOBAL_DEFAULT_TIMEOUTr   r   r$   r'   r/   r   r7   r:   r<   r>   r@   rD   rF   rJ   r6   rP   rQ   rS   rT   rV   rU   r\   ÚreÚcompiler]   rb   rc   rd   re   rj   rr   r   r   r   r   r   3   sD    +
ÿ





	c                   @   s8   e Zd ZdZeddejdfdd„Zdd„ Zd	dd„Z	dS )
ÚPOP3_SSLa  POP3 client class over SSL connection

        Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None,
                                   context=None)

               hostname - the hostname of the pop3 over ssl server
               port - port number
               keyfile - PEM formatted file that contains your private key
               certfile - PEM formatted certificate chain file
               context - a ssl.SSLContext

        See the methods of the parent class POP3 for more documentation.
        Nc                 C   s’   |d ur|d urt dƒ‚|d ur|d urt dƒ‚|d us |d ur+dd l}| dtd¡ || _|| _|d u r<tj||d}|| _t	 
| |||¡ d S )Nz4context and keyfile arguments are mutually exclusivez5context and certfile arguments are mutually exclusiver   zAkeyfile and certfile are deprecated, use a custom context insteadrG   )ÚcertfileÚkeyfile)r   ÚwarningsÚwarnÚDeprecationWarningrz   ry   rn   ro   rq   r   r   )r   r   r   rz   ry   r   rq   r{   r   r   r   r   ²  s"   ÿÿzPOP3_SSL.__init__c                 C   s"   t  | |¡}| jj|| jd}|S )Nrl   )r   r   rq   rp   r   )r   r   r   r   r   r   r   Æ  s
   ÿzPOP3_SSL._create_socketc                 C   s   t dƒ‚)z¬The method unconditionally raises an exception since the
            STLS command doesn't make any sense on an already established
            SSL/TLS session.
            rk   )r   )r   rz   ry   rq   r   r   r   rr   Ì  s   zPOP3_SSL.stls)NNN)
r   r   r   rs   ÚPOP3_SSL_PORTr   ru   r   r   rr   r   r   r   r   rx   £  s    
ÿrx   Ú__main__r   rG   é   zMessage %d:z   z-----------------------)'rs   rY   rv   r   r   rn   rm   ÚImportErrorÚ__all__Ú	Exceptionr   rt   r~   r-   ZLFr!   r+   r   rx   r5   r   ÚargvÚar   r>   rD   rF   r6   rJ   ZnumMsgsZ	totalSizeÚrangeÚirP   ÚheaderÚmsgr.   r#   rV   r   r   r   r   Ú<module>   sR    ÿ  p
0
ò