U e5dɯ @srdZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddl Z ddl Z ddl mZdddddd d d d d dddg ZdZdZdZdZdZdZedejZGdddeZGdddeZGdddeZGdddeZGdddeZGdd d eZ Gdd d eZ!Gdd d eZ"Gd d d eZ#Gd!d d eZ$d"dZ%d#d$Z&d%dZ'd&d'Z(d(d)Z)z ddl*Z*Wne+k rd*Z,YnXd+Z,Gd,ddZ-e,rGd-d.d.e-Z.e/d.d/Z0Gd0d1d1e-Z1e2d2krnd3d4Z3e3d5Z4e3d65d7Z6e7d8d9Z8e j9:Z;e;s*q6e8e;Z8qe7d:ed<e=?e4e6e8e=@dS)=aSMTP/ESMTP client class. This should follow RFC 821 (SMTP), RFC 1869 (ESMTP), RFC 2554 (SMTP Authentication) and RFC 2487 (Secure SMTP over TLS). Notes: Please remember, when doing ESMTP, that the names of the SMTP service extensions are NOT the same thing as the option keywords for the RCPT and MAIL commands! Example: >>> import smtplib >>> s=smtplib.SMTP("localhost") >>> print(s.help()) This is Sendmail version 8.8.4 Topics: HELO EHLO MAIL RCPT DATA RSET NOOP QUIT HELP VRFY EXPN VERB ETRN DSN For more info use "HELP ". To report bugs in the implementation send email to sendmail-bugs@sendmail.org. For local information send email to Postmaster at your site. End of HELP info >>> s.putcmd("vrfy","someone@here") >>> s.getreply() (250, "Somebody OverHere ") >>> s.quit() N) body_encode SMTPExceptionSMTPNotSupportedErrorSMTPServerDisconnectedSMTPResponseExceptionSMTPSenderRefusedSMTPRecipientsRefused SMTPDataErrorSMTPConnectError SMTPHeloErrorSMTPAuthenticationError quoteaddr quotedataSMTPi s i z auth=(.*)c@seZdZdZdS)rz4Base class for all exceptions raised by this module.N__name__ __module__ __qualname____doc__rr/usr/lib64/python3.8/smtplib.pyrHsc@seZdZdZdS)rzThe command or option is not supported by the SMTP server. This exception is raised when an attempt is made to run a command or a command with an option which is not supported by the server. NrrrrrrKsc@seZdZdZdS)rzNot connected to any SMTP server. This exception is raised when the server unexpectedly disconnects, or when an attempt is made to use the SMTP instance before connecting it to a server. NrrrrrrRsc@seZdZdZddZdS)ra2Base class for all exceptions that include an SMTP error code. These exceptions are generated in some instances when the SMTP server returns an error code. The error code is stored in the `smtp_code' attribute of the error, and the `smtp_error' attribute is set to the error message. cCs||_||_||f|_dSN) smtp_code smtp_errorargs)selfcodemsgrrr__init__cszSMTPResponseException.__init__Nrrrrr!rrrrrZsc@seZdZdZddZdS)rzSender address refused. In addition to the attributes set by on all SMTPResponseException exceptions, this sets `sender' to the string that the SMTP refused. cCs"||_||_||_|||f|_dSr)rrsenderr)rrr r#rrrr!oszSMTPSenderRefused.__init__Nr"rrrrrhsc@seZdZdZddZdS)rzAll recipient addresses refused. The errors for each recipient are accessible through the attribute 'recipients', which is a dictionary of exactly the same sort as SMTP.sendmail() returns. cCs||_|f|_dSr) recipientsr)rr$rrrr!}szSMTPRecipientsRefused.__init__Nr"rrrrrusc@seZdZdZdS)r z'The SMTP server didn't accept the data.Nrrrrrr sc@seZdZdZdS)r z&Error during connection establishment.Nrrrrrr sc@seZdZdZdS)r z"The server refused our HELO reply.Nrrrrrr sc@seZdZdZdS)r zvAuthentication error. Most probably the server didn't accept the username/password combination provided. Nrrrrrr scCs>tj|\}}||fdkr6|dr.|Sd|Sd|S)zQuote a subset of the email addresses defined by RFC 821. Should be able to handle anything email.utils.parseaddr can handle. r&)emailutils parseaddrstrip startswithZ addrstringZ displaynameaddrrrrr s  cCs$tj|\}}||fdkr |S|S)Nr%)r(r)r*r-rrr _addr_onlys r/c Cstddtdt|S)zQuote data for email. Double leading '.', and change Unix newline '\n', or Mac '\r' into Internet CRLF end-of-line. z(?m)^\.z..(?:\r\n|\n|\r(?!\n))resubCRLFdatarrrrs cCstdd|S)Ns(?m)^\.s..)r2r3)Zbindatarrr_quote_periodssr7cCstdt|S)Nr0r1r5rrr _fix_eolssr8FTc@szeZdZdZdZdZdZdZdZdZ dZ e Z ddde jdfddZdd Zd d Zd d ZddZddZdNddZddZdOddZddZdPddZdQddZdRdd Zd!d"ZdSd#d$Zd%d&Zd'd(Zd)d*Z dTd,d-Z!dUd.d/Z"d0d1Z#d2d3Z$e$Z%d4d5Z&d6d7Z'd8d9d:d;Z(dVdd?Z*dXd@dAZ+d8d9dBdCZ,dYdDdEZ-dZdFdGZ.d[dHdIZ/dJdKZ0dLdMZ1dS)\raThis class manages a connection to an SMTP or ESMTP server. SMTP Objects: SMTP objects have the following attributes: helo_resp This is the message given by the server in response to the most recent HELO command. ehlo_resp This is the message given by the server in response to the most recent EHLO command. This is usually multiline. does_esmtp This is a True value _after you do an EHLO command_, if the server supports ESMTP. esmtp_features This is a dictionary, which, if the server supports ESMTP, will _after you do an EHLO command_, contain the names of the SMTP service extensions this server supports, and their parameters (if any). Note, all extension names are mapped to lower case in the dictionary. See each method's docstrings for details. In general, there is a method of the same name to perform each SMTP command. There is also a method called 'sendmail' that will do an entire mail transaction. rNehlor&c Cs||_||_i|_d|_||_d|_|rR|||\}}|dkrR|t|||dk rb||_ nPt }d|krz||_ n8d} zt t } Wnt jk rYnXd| |_ dS)aInitialize a new instance. If specified, `host` is the name of the remote host to which to connect. If specified, `port` specifies the port to which to connect. By default, smtplib.SMTP_PORT is used. If a host is specified the connect method is called, and if it returns anything other than a success code an SMTPConnectError is raised. If specified, `local_hostname` is used as the FQDN of the local host in the HELO/EHLO command. Otherwise, the local hostname is found using socket.getfqdn(). The `source_address` parameter takes a 2-tuple (host, port) for the socket to bind to as its source address before connecting. If the host is '' and port is 0, the OS default behavior will be used. asciirN.z 127.0.0.1z[%s])_hosttimeoutesmtp_featurescommand_encodingsource_address_auth_challenge_countconnectcloser local_hostnamesocketZgetfqdnZ gethostbynameZ gethostnameZgaierror) rhostportrEr>rArr Zfqdnr.rrrr!s, z SMTP.__init__cCs|Srrrrrr __enter__szSMTP.__enter__cGsNz>z$|d\}}|dkr$t||Wntk r:YnXW5|XdS)NZQUIT)rDdocmdrr)rrrmessagerrr__exit__s z SMTP.__exit__cCs ||_dS)zSet the debug output level. A non-false value results in debug messages for connection and for all messages sent to and received from the server. N) debuglevel)rrOrrrset_debuglevel"szSMTP.set_debuglevelcGs@|jdkr,ttjf|dtjint|dtjidS)Nfile)rOprintdatetimeZnowtimesysstderrrrrrr _print_debug+s "zSMTP._print_debugcCs2|jdkr|d||f|jt||f||jS)Nrz connect: to)rOrYrArFcreate_connection)rrGrHr>rrr _get_socket1s   zSMTP._get_socket localhostcCs|r ||_|s||d|dkr||d}|dkr||d|||dd}}z t|}Wntk rztdYnX|s|j}td|||| |||j |_ d|_ | \}}|jdkr|dt|||fS)apConnect to a host on a given port. If the hostname ends with a colon (`:') followed by a number, and there is no port specified, that suffix will be stripped off and the number interpreted as the port number to use. Note: This method is automatically invoked by __init__, if a host is specified during instantiation. :rNrQznonnumeric portzsmtplib.connectconnect:)rAfindrfindint ValueErrorOSError default_portrVauditr[r>sockrRgetreplyrOrYrepr)rrGrHrAirr rrrrC9s&     z SMTP.connectcCs|jdkr|dt||jr|t|tr6||j}t d||z|j |Wqt k rx| t dYqXnt ddS)zSend `s' to the server.rzsend:z smtplib.sendServer not connectedzplease run connect() firstN)rOrYrhrf isinstancestrencoder@rVreZsendallrcrDr)rsrrrsendZs   z SMTP.sendcCsd|dkr|}n|d|}d|ks,d|krN|dddd}td|||tdS) zSend a command to the server.r&   z\nz\rz=command and arguments contain prohibited newline characters: N)replacerbror4)rcmdrrnrrrputcmdmsz SMTP.putcmdc CsPg}|jdkr|jd|_z|jtd}Wn:tk rj}z|tdt|W5d}~XYnX|s|td|j dkr| dt |t |tkr|t dd ||d dd |dd }z t|}Wn tk rd }Yq YnX|d d dkrq qd|}|j dkrH| d||f||fS)aGet a reply from the server. Returns a tuple consisting of: - server response code (e.g. '250', or such, if all goes well) Note: returns -1 if it can't read response code. - server response string corresponding to response code (multiline responses are converted to a single, multiline string). Raises SMTPServerDisconnected if end-of-file is reached. NrbrQz Connection unexpectedly closed: zConnection unexpectedly closedrzreply:izLine too long.s - zreply: retcode (%s); Msg: %a)rRrfZmakefilereadline_MAXLINErcrDrrlrOrYrhlenrappendr+rarbjoin)rresplineerZerrcodeerrmsgrrrrgzs>          z SMTP.getreplycCs||||S)z-Send a command, and return its response code.rurg)rrtrrrrrLs z SMTP.docmdcCs,|d|p|j|\}}||_||fS)zwSMTP 'helo' command. Hostname to send for this command defaults to the FQDN of the local host. helo)rurErg helo_resp)rnamerr rrrrs z SMTP.heloc Cs.i|_||j|p|j|\}}|dkrJt|dkrJ|td||_|dkr`||fSd|_ |j d d}|d=|D]}t |}|r|jdd d |dd|jd<qt d |}|r|d }|j|d d } |dkr|j|d d | |j|<q| |j|<q||fS)zx SMTP 'ehlo' command. Hostname to send for this command defaults to the FQDN of the local host. ryrrjrQzlatin-1rrauthr&rpz((?P[A-Za-z0-9][A-Za-z0-9\-]*) ?featureN)r?ruehlo_msgrErgr~rDr ehlo_resp does_esmtpdecodesplit OLDSTYLE_AUTHmatchgetgroupsr2grouplowerstringendr+) rrrr reachZ auth_matchmrZparamsrrrr9sB         z SMTP.ehlocCs||jkS)z7Does the server support a given SMTP service extension?)rr?)roptrrrhas_extnsz SMTP.has_extncCs|d||dS)z;SMTP 'help' command. Returns help text from server.helprQrrXrrrrs z SMTP.helpcCsd|_|dS)z&SMTP 'rset' command -- resets session.r:rset)r@rLrIrrrrsz SMTP.rsetcCs&z |Wntk r YnXdS)aInternal 'rset' command which ignores any SMTPServerDisconnected error. Used internally in the library, since the server disconnected error should appear to the application when the *next* command is issued, if we are doing an internal "safety" reset. N)rrrIrrr_rsets z SMTP._rsetcCs |dS)z-SMTP 'noop' command -- doesn't do anything :>noop)rLrIrrrr sz SMTP.nooprcCshd}|rH|jrHtdd|Dr:|dr2d|_ntddd|}|dd t||f|S) a8SMTP 'mail' command -- begins mail xfer session. This method may raise the following exceptions: SMTPNotSupportedError The options parameter includes 'SMTPUTF8' but the SMTPUTF8 extension is not supported by the server. r&css|]}|dkVqdS)smtputf8N)r).0xrrr szSMTP.mail..rzutf-8z SMTPUTF8 not supported by serverrpmailz FROM:%s%s) ranyrr@rrrur rg)rr#options optionlistrrrr s   z SMTP.mailcCs<d}|r|jrdd|}|ddt||f|S)z;SMTP 'rcpt' command -- indicates 1 recipient for this mail.r&rprcptzTO:%s%s)rrrur rg)rZreciprrrrrr"s  z SMTP.rcptcCs|d|\}}|jdkr0|d||f|dkrDt||n|t|tr\t|d}t |}|ddt kr||t }|dt }| ||\}}|jdkr|d||f||fSdS) aSMTP 'DATA' command -- sends message data to server. Automatically quotes lines beginning with a period per rfc821. Raises SMTPDataError if there is an unexpected reply to the DATA command; the return value from this method is the final response code received when the all data is sent. If msg is a string, lone '\r' and '\n' characters are converted to '\r\n' characters. If msg is bytes, it is transmitted as is. r6rzdata:ibr:N.) rurgrOrYr rkrlr8rmr7bCRLFro)rr rreplqrrrr6*s"         z SMTP.datacCs|dt||S)z5SMTP 'verify' command -- checks for address validity.vrfyrur/rgrZaddressrrrverifyGsz SMTP.verifycCs|dt||S)z.SMTP 'expn' command -- expands a mailing list.expnrrrrrrNsz SMTP.expncCsb|jdkr^|jdkr^d|dkr0dks^n|\}}d|krRdks^nt||dS)abCall self.ehlo() and/or self.helo() if needed. If there has been no previous EHLO or HELO command this session, this method tries ESMTP EHLO first. This method may raise the following exceptions: SMTPHeloError The server didn't reply properly to the helo greeting. Nri+)rrr9rr )rrrrrrehlo_or_helo_if_neededUs  zSMTP.ehlo_or_helo_if_neededTinitial_response_okc Cs|}|r|nd}|dk rPt|ddd}|d|d|\}}d|_n|d|\}}d|_|d kr|jd7_t|}t||ddd}||\}}|jtkrftd t ||fqf|d kr||fSt ||dS) aAuthentication command - requires response processing. 'mechanism' specifies which authentication mechanism is to be used - the valid values are those listed in the 'auth' element of 'esmtp_features'. 'authobject' must be a callable object taking a single argument: data = authobject(challenge) It will be called to process the server's challenge response; the challenge argument it is passed will be a bytes. It should return an ASCII string that will be base64 encoded and sent to the server. Keyword arguments: - initial_response_ok: Allow sending the RFC 4954 initial-response to the AUTH command, if the authentication methods supports it. Nr:r&)ZeolZAUTHrprQriNz4Server AUTH mechanism infinite loop. Last response: i) upper encode_base64rmrLrBbase64Z decodebytes _MAXCHALLENGErrhr ) rZ mechanismZ authobjectrZinitial_responseZresponserr challengerrrrfs2    z SMTP.authcCs0|dkr dS|jdt|jd|dS)zh Authobject to use with CRAM-MD5 authentication. Requires self.user and self.password to be set.Nrpr:Zmd5)userhmacZHMACpasswordrmZ hexdigestrrrrr auth_cram_md5s  zSMTP.auth_cram_md5cCsd|j|jfS)ze Authobject to use with PLAIN authentication. Requires self.user and self.password to be set.z%s%s)rrrrrr auth_plainszSMTP.auth_plaincCs"|dks|jdkr|jS|jSdS)ze Authobject to use with LOGIN authentication. Requires self.user and self.password to be set.N)rBrrrrrr auth_loginszSMTP.auth_loginc s||dstd|jddddg}fdd|D}|sPtd|||_|_|D]t}d | d d }z4|j |t |||d \}} |d kr|| fWSWqbt k r} z| } W5d} ~ XYqbXqb| dS)awLog in on an SMTP server that requires authentication. The arguments are: - user: The user name to authenticate with. - password: The password for the authentication. Keyword arguments: - initial_response_ok: Allow sending the RFC 4954 initial-response to the AUTH command, if the authentication methods supports it. If there has been no previous EHLO or HELO command this session, this method tries ESMTP EHLO first. This method will return normally if the authentication was successful. This method may raise the following exceptions: SMTPHeloError The server didn't reply properly to the helo greeting. SMTPAuthenticationError The server didn't accept the username/ password combination. SMTPNotSupportedError The AUTH command is not supported by the server. SMTPException No suitable authentication method was found. rz,SMTP AUTH extension not supported by server.zCRAM-MD5ZPLAINZLOGINcsg|]}|kr|qSrr)rrZadvertised_authlistrr szSMTP.login..z(No suitable authentication method found.Zauth_-_rrN) rrrr?rrrrrrsrgetattrr ) rrrrZpreferred_authsZauthlistZ authmethodZ method_namerrrZlast_exceptionrrrlogins0   z SMTP.logincCs||dstd|d\}}|dkrts>> import smtplib >>> s=smtplib.SMTP("localhost") >>> tolist=["one@one.org","two@two.org","three@three.org","four@four.org"] >>> msg = '''\ ... From: Me@my.org ... Subject: testin'... ... ... This is a test ''' >>> s.sendmail("me@my.org",tolist,msg) { "three@three.org" : ( 550 ,"User unknown" ) } >>> s.quit() In the above example, the message was accepted for delivery to three of the four addresses, and one was rejected, with the error code 550. If all addresses are accepted, then the method will return an empty dictionary. r:sizezsize=%dri)rrkrlr8rmrrrr~rrDrrrrr6r ) r from_addrto_addrsr mail_options rcpt_optionsZ esmtp_optsZoptionrrZsenderrsrrrrsendmail&sF@            z SMTP.sendmailc Cs||d}|dkr d}nt|dkr2d}ntd|dkr||d|krZ||dn ||d}tj|gd d}|dkrd d ||d ||d ||dfD}dd tj|D}t|} | d =| d=d} zd|f| dWn.t k r(| ds t dd} YnXt R} | r^tjj| |jjddd} |d}n tj| } | j| dd| } W5QRX|||| ||S)a~Converts message to a bytestring and passes it to sendmail. The arguments are as for sendmail, except that msg is an email.message.Message object. If from_addr is None or to_addrs is None, these arguments are taken from the headers of the Message as described in RFC 2822 (a ValueError is raised if there is more than one set of 'Resent-' headers). Regardless of the values of from_addr and to_addr, any Bcc field (or Resent-Bcc field, when the Message is a resent) of the Message object won't be transmitted. The Message object is then serialized using email.generator.BytesGenerator and sendmail is called to transmit the message. If the sender or any of the recipient addresses contain non-ASCII and the server advertises the SMTPUTF8 capability, the policy is cloned with utf8 set to True for the serialization, and SMTPUTF8 and BODY=8BITMIME are asserted on the send. If the server does not support SMTPUTF8, an SMTPNotSupported error is raised. Otherwise the generator is called without modifying the policy. z Resent-DateNr&rQzResent-z0message has more than one 'Resent-' header blockZSenderFromrcSsg|]}|dk r|qSrr)rfrrrrsz%SMTP.send_message..ToZBccZCccSsg|] }|dqS)rQr)rarrrrsz Resent-BccFr:rzOne or more source or delivery addresses require internationalized email support, but the server does not advertise the required SMTPUTF8 capabilityT)utf8)policySMTPUTF8 BODY=8BITMIMEr)linesep)rr)rZget_allr~rbr(r)Z getaddressescopyrrmUnicodeEncodeErrorrrioBytesIO generatorZBytesGeneratorrZcloneZflattengetvaluer)rr rrrrZresentZ header_prefixZ addr_fieldsZmsg_copyZ internationalZbytesmsggZflatmsgrrr send_messagesX              zSMTP.send_messagecCs<z|j}d|_|r|W5|j}d|_|r6|XdS)z(Close the connection to the SMTP server.N)rfrDrR)rrfrRrrrrDs z SMTP.closecCs.|d}d|_|_i|_d|_||S)zTerminate the SMTP session.quitNF)rLrrr?rrD)rresrrrrs   z SMTP.quit)r\rN)r&)r&)r&)r&)r&)r)r)N)N)N)NNN)rr)NNrr)2rrrrrOrfrRrrrr SMTP_PORTrdrF_GLOBAL_DEFAULT_TIMEOUTr!rJrNrPrYr[rCrorurgrLrr9rrrrrrrr6rrrrrrrrrrrrrDrrrrrrsh 0   ! 1  3    0  B 8 h M c@s8eZdZdZeZdddddejddfddZddZ dS) SMTP_SSLa This is a subclass derived from SMTP that connects over an SSL encrypted socket (to use this class you need a socket module that was compiled with SSL support). If host is not specified, '' (the local host) is used. If port is omitted, the standard SMTP-over-SSL port (465) is used. local_hostname and source_address have the same meaning as they do in the SMTP class. keyfile and certfile are also optional - they can contain a PEM formatted private key and certificate chain file for the SSL connection. context also optional, can contain a SSLContext, and is an alternative to keyfile and certfile; If it is specified both keyfile and certfile must be None. r&rNc Cs|dk r|dk rtd|dk r0|dk r0td|dk s@|dk rVddl} | dtd||_||_|dkrxtj||d}||_t ||||||dS)Nrrrrrr) rbrrrrrrrrrr!) rrGrHrErrr>rArrrrrr!s(zSMTP_SSL.__init__cCsD|jdkr|d||ft||f||j}|jj||jd}|S)Nrr^r)rOrYrFrZrArrr=)rrGrHr>Z new_socketrrrr[s  zSMTP_SSL._get_socket) rrrr SMTP_SSL_PORTrdrFrr!r[rrrrrs  ric@s0eZdZdZdZdeddfddZd d d ZdS) LMTPaLMTP - Local Mail Transfer Protocol The LMTP protocol, which is very similar to ESMTP, is heavily based on the standard SMTP client. It's common to use Unix sockets for LMTP, so our connect() method must support that as well as a regular host:port server. local_hostname and source_address have the same meaning as they do in the SMTP class. To specify a Unix socket, you must use an absolute path as the host, starting with a '/'. Authentication is supported, using the regular SMTP mechanism. When using a Unix socket, LMTP generally don't support or require any authentication, but your mileage might vary.Zlhlor&NcCstj|||||ddS)zInitialize a new instance.)rErAN)rr!)rrGrHrErArrrr!;s z LMTP.__init__r\rcCs|ddkrtj||||dSz(ttjtj|_d|_|j|WnBtk r|jdkrl| d||jr||j d|_YnX| \}}|jdkr| d|||fS)z=Connect to the LMTP daemon, on either a Unix or a TCP socket.r/)rANz connect fail:r^) rrCrFZAF_UNIXZ SOCK_STREAMrfrRrcrOrYrDrg)rrGrHrArr rrrrCAs"       z LMTP.connect)r\rN)rrrrr LMTP_PORTr!rCrrrrr+s   r__main__cCs(tj|dtjtjS)Nz: )rVstdoutwriteflushstdinr|r+)promptrrrr[s rrr,zEnter message, end with ^D:r&zMessage length is %dr\rQ)ArrFrr2Z email.utilsr(Z email.messageZemail.generatorrrrrTrVZemail.base64mimerr__all__rrr4rr}rcompileIrrcrrrrrrr r r r r r/rr7r8r ImportErrorrrrrrrrrZfromaddrrZtoaddrsrSr rr|rr~ZserverrPrrrrrrs)       :0 /