tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
M\¬Qc @sõdZddlZddlZddlZddlZddlZddlmZ    ddl
m Z ddddd    d
d d d dddg Z dZ dZdZejdejƒZdefd„ƒYZdefd„ƒYZdefd„ƒYZdefd„ƒYZd    efd„ƒYZd
efd„ƒYZd efd„ƒYZd efd„ƒYZd efd„ƒYZd„Zd„Zd „Zyddl Z Wne!k
r½e"Z#nXd!fd"„ƒYZ$e%Z#dfd#„ƒYZ&e#rd$e&fd%„ƒYZ'e j(d$ƒnd&Z)d'e&fd(„ƒYZ*e+d)krñddl
Z
d*„Z,e,d+ƒZ-e,d,ƒj.d-ƒZ/d.GHd/Z0x'e
j1j2ƒZ3e3 rœPne0e3Z0q‚d0e4e0ƒGHe&d1ƒZ5e5j6d2ƒe5j7e-e/e0ƒe5j8ƒndS(3s~SMTP/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 <topic>".
  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 <somebody@here.my.org>")
  >>> s.quit()
iÿÿÿÿN(tencode(tstderrt SMTPExceptiontSMTPServerDisconnectedtSMTPResponseExceptiontSMTPSenderRefusedtSMTPRecipientsRefusedt SMTPDataErrortSMTPConnectErrort SMTPHeloErrortSMTPAuthenticationErrort    quoteaddrt    quotedatatSMTPiiÑs
s    auth=(.*)cBseZdZRS(s4Base class for all exceptions raised by this module.(t__name__t
__module__t__doc__(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRAscBseZdZRS(sÌNot 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.
    (RRR(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRDscBseZdZd„ZRS(s2Base 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|_dS(N(t    smtp_codet
smtp_errortargs(tselftcodetmsg((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyt__init__Us        (RRRR(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRLscBseZdZd„ZRS(s«Sender address refused.
 
    In addition to the attributes set by on all SMTPResponseException
    exceptions, this sets `sender' to the string that the SMTP refused.
    cCs1||_||_||_|||f|_dS(N(RRtsenderR(RRRR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRas            (RRRR(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRZscBseZdZd„ZRS(sÎAll 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|_dS(N(t
recipientsR(RR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRos    (RRRR(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRgscBseZdZRS(s'The SMTP server didn't accept the data.(RRR(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRtscBseZdZRS(s&Error during connection establishment.(RRR(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRwscBseZdZRS(s"The server refused our HELO reply.(RRR(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR    zscBseZdZRS(svAuthentication error.
 
    Most probably the server didn't accept the username/password
    combination provided.
    (RRR(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR
}scCsdd}ytjj|ƒd}Wntk
r3nX|dkrHd|S|dkrXdSd|SdS(s‚Quote a subset of the email addresses defined by RFC 821.
 
    Should be able to handle anything rfc822.parseaddr can handle.
    is<%s>s<>N(NN(NN(tNonetemailtutilst    parseaddrtAttributeError(taddrtm((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR …s   cCs2tjj|ƒ\}}||fdkr.|S|S(Nt(R!R!(RRR(t
addrstringt displaynameR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyt
_addr_only˜scCs"tjddtjdt|ƒƒS(sQuote data for email.
 
    Double leading '.', and change Unix newline '\n', or Mac '\r' into
    Internet CRLF end-of-line.
    s(?m)^\.s..s(?:\r\n|\n|\r(?!\n))(tretsubtCRLF(tdata((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR Ÿs t SSLFakeFilecBs)eZdZd„Zd„Zd„ZRS(stA fake file like object that really wraps a SSLObject.
 
        It only supports what is needed in smtplib.
        cCs ||_dS(N(tsslobj(RR*((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR³scCsId}d}x6|dkrD|jjdƒ}|s7Pn||7}qW|S(NR!s
i(RR*tread(Rtstrtchr((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytreadline¶scCsdS(N((R((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytcloseÀs(RRRRR.R/(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR)®s        
cBsUeZdZdZdZdZdZdZdZ    e
Z ddde j d„Zd„Zd„Zddd„Zd    „Zdd
„Zd „Zdd „Zdd „Zdd„Zd„Zdd„Zd„Zd„Zgd„Zgd„Zd„Zd„ZeZ d„Z!d„Z"d„Z#ddd„Z$ggd„Z%d„Z&d„Z'RS(s´This 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.
        itehloR!c    CsÔ||_i|_|rQ|j||ƒ\}}|dkrQt||ƒ‚qQn|dk    ri||_ngtjƒ}d|kr||_nCd}ytjtj    ƒƒ}Wntj
k
rÂnXd||_dS(sInitialize 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.  By default,
        the local hostname is found using socket.getfqdn().
 
        iÜt.s    127.0.0.1s[%s]N( ttimeouttesmtp_featurestconnectRRtlocal_hostnametsockettgetfqdnt gethostbynamet gethostnametgaierror(    RthosttportR5R2RRtfqdnR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRês"              cCs ||_dS(s¬Set 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(t
debuglevel(RR>((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytset_debuglevelscCs>|jdkr(tdI||fIJntj||f|ƒS(Nisconnect:(R>RR6tcreate_connection(RR;R<R2((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyt _get_socketst    localhostcCs"| r|jdƒ|jdƒkr|jdƒ}|dkr|| ||d}}yt|ƒ}WqŒtk
rˆtjd‚qŒXqn|s¡|j}n|jdkrÉtdI||fIJn|j    |||j
ƒ|_ |j ƒ\}}|jdkrtdI|IJn||fS(spConnect 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.
 
        t:iisnonnumeric portsconnect:( tfindtrfindtintt
ValueErrorR6terrort default_portR>RRAR2tsocktgetreply(RR;R<tiRR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR4s" %   cCs”|jdkr(tdIt|ƒIJnt|dƒr„|jr„y|jj|ƒWqtjk
r€|jƒt    dƒ‚qXn t    dƒ‚dS(sSend `str' to the server.issend:RJsServer not connectedsplease run connect() firstN(
R>RtreprthasattrRJtsendallR6RHR/R(RR,((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytsend<s
cCsC|dkrd|tf}nd||tf}|j|ƒdS(sSend a command to the server.R!s%s%ss%s %s%sN(R'RP(RtcmdRR,((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytputcmdIs cCsng}|jd kr-|jjdƒ|_nxÿy|jjƒ}Wn6tjk
r{}|jƒtdt    |ƒƒ‚nX|dkr¡|jƒtdƒ‚n|j
dkrÉt dIt |ƒIJn|j |djƒƒ|d }yt|ƒ}Wntk
rd    }PnX|dd!d
kr0Pq0q0d j|ƒ}|j
dkrdt d ||fIJn||fS(s¨Get 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.
        trbs Connection unexpectedly closed: R!sConnection unexpectedly closedisreply:iiiÿÿÿÿt-s
sreply: retcode (%s); Msg: %sN(tfileRRJtmakefileR.R6RHR/RR,R>RRMtappendtstripRFRGtjoin(RtresptlineteRterrcodeterrmsg((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRKQs8 
 
 
 cCs|j||ƒ|jƒS(s-Send a command, and return its response code.(RRRK(RRQR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytdocmdscCs>|jd|p|jƒ|jƒ\}}||_||fS(swSMTP 'helo' command.
        Hostname to send for this command defaults to the FQDN of the local
        host.
        thelo(RRR5RKt    helo_resp(RtnameRR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR`…s    c
Cs¢i|_|j|j|p!|jƒ|jƒ\}}|dkrnt|ƒdkrn|jƒtdƒ‚n||_|dkr||fSd|_    |jj
dƒ}|d=xæ|D]Þ}t j |ƒ}|r|jj ddƒd    |jdƒd|jd<q¶ntj d
|ƒ}|r¶|jd ƒjƒ}|j|jd ƒjƒ}    |dkr„|jj |dƒd    |    |j|<q”|    |j|<q¶q¶W||fS( sx SMTP 'ehlo' command.
        Hostname to send for this command defaults to the FQDN of the local
        host.
        iÿÿÿÿisServer not connectediúis
tauthR!t s((?P<feature>[A-Za-z0-9][A-Za-z0-9\-]*) ?tfeature(R3RRtehlo_msgR5RKtlenR/Rt    ehlo_respt
does_esmtptsplitt OLDSTYLE_AUTHtmatchtgettgroupsR%tgrouptlowertstringtendRX(
RRbRRRZteacht
auth_matchR Retparams((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR0s2    
     
     1 'cCs|jƒ|jkS(s7Does the server support a given SMTP service extension?(RpR3(Rtopt((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pythas_extnÁscCs|jd|ƒ|jƒdS(s;SMTP 'help' command.
        Returns help text from server.thelpi(RRRK(RR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRxÅscCs |jdƒS(s&SMTP 'rset' command -- resets session.trset(R_(R((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRyËscCs |jdƒS(s-SMTP 'noop' command -- doesn't do anything :>tnoop(R_(R((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRzÏscCsUd}|r+|jr+ddj|ƒ}n|jddt|ƒ|fƒ|jƒS(s0SMTP 'mail' command -- begins mail xfer session.R!Rdtmails    FROM:%s%s(RiRYRRR RK(RRtoptionst
optionlist((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR{Ós
 cCsUd}|r+|jr+ddj|ƒ}n|jddt|ƒ|fƒ|jƒS(s;SMTP 'rcpt' command -- indicates 1 recipient for this mail.R!RdtrcptsTO:%s%s(RiRYRRR RK(RtrecipR|R}((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR~Ûs
 cCsñ|jdƒ|jƒ\}}|jdkrGtdI||fIJn|dkret||ƒ‚nˆt|ƒ}|dtkrŽ|t}n|dt}|j|ƒ|jƒ\}}|jdkrãtdI||fIJn||fSdS(sHSMTP '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.
        R(isdata:ibiþÿÿÿR1N(RRRKR>RRR R'RP(RRRtrepltq((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR(ãs     cCs |jdt|ƒƒ|jƒS(s5SMTP 'verify' command -- checks for address validity.tvrfy(RRR$RK(Rtaddress((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytverifyüscCs |jdt|ƒƒ|jƒS(s.SMTP 'expn' command -- expands a mailing list.texpn(RRR$RK(RRƒ((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR…scCsŽ|jdkrŠ|jdkrŠd|jƒdko?dknsŠ|jƒ\}}d|komdkns‡t||ƒ‚q‡qŠndS(sbCall 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.
        iÈii+N(RaRRhR0R`R    (RRRZ((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytehlo_or_helo_if_needed
s
&cCsðd„}d„}d}d}d}|jƒ|jdƒsLtdƒ‚n|jdjƒ}|||g}    d}
x$|    D]} | |kr{| }
Pq{q{W|
|krù|jd|ƒ\} } | d    krÕ| | fS|j|| ||ƒƒ\} } nÏ|
|kr1|jd|d
|||ƒƒ\} } n—|
|kr­|jdd |t|d d ƒfƒ\} } | dkr‰t| | ƒ‚n|jt|d d ƒƒ\} } n|
dkrÈtdƒ‚n| dkræt| | ƒ‚n| | fS(sALog in on an SMTP server that requires authentication.
 
        The arguments are:
            - user:     The user name to authenticate with.
            - password: The password for the authentication.
 
        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.
         SMTPException            No suitable authentication method was
                                  found.
        cSs?tj|ƒ}|dtj||ƒjƒ}t|ddƒS(NRdteolR!(tbase64t decodestringthmactHMACt    hexdigestt encode_base64(t    challengetusertpasswordtresponse((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytencode_cram_md51s cSstd||fddƒS(Nt%s%sR‡R!(R(RR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyt encode_plain6stPLAINsCRAM-MD5tLOGINRcs,SMTP AUTH extension not supported by server.tAUTHi÷Rds%s %sR‡R!iNs(No suitable authentication method found.iëN(iëi÷(    R†RwRR3RjRR_RR
(RRRR’R”t
AUTH_PLAINt AUTH_CRAM_MD5t
AUTH_LOGINtauthlisttpreferred_authst
authmethodtmethodRRZ((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytloginsD        
 
$     #     % $  cCs¼|jƒ|jdƒs(tdƒ‚n|jdƒ\}}|dkr²ts^tdƒ‚ntj|j||ƒ|_t    |jƒ|_
d|_ d|_ i|_d|_n||fS(s¡Puts the connection to the SMTP server into TLS mode.
 
        If there has been no previous EHLO or HELO command this session, this
        method tries ESMTP EHLO first.
 
        If the server supports TLS, this will encrypt the rest of the SMTP
        session. If you provide the keyfile and certfile parameters,
        the identity of the SMTP server and client can be checked. This,
        however, depends on whether the socket module really checks the
        certificates.
 
        This method may raise the following exceptions:
 
         SMTPHeloError            The server didn't reply properly to
                                  the helo greeting.
        tstarttlss+STARTTLS extension not supported by server.tSTARTTLSiÜs&No SSL support included in this PythoniN(R†RwRR_t    _have_sslt RuntimeErrortsslt wrap_socketRJR)RURRaRhR3Ri(RtkeyfiletcertfileRZtreply((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR is
              c Cs|jƒg}|jrc|jdƒrB|jdt|ƒƒnx|D]}|j|ƒqIWn|j||ƒ\}}    |dkr¦|jƒt||    |ƒ‚ni}
t|t    ƒrÇ|g}nxQ|D]I} |j
| |ƒ\}}    |dkrÎ|dkrÎ||    f|
| <qÎqÎWt|
ƒt|ƒkrL|jƒt |
ƒ‚n|j |ƒ\}}    |dkr‰|jƒt ||    ƒ‚n|
S(sÔ    This command performs an entire mail transaction.
 
        The arguments are:
            - from_addr    : The address sending this mail.
            - to_addrs     : A list of addresses to send this mail to.  A bare
                             string will be treated as a list with 1 address.
            - msg          : The message to send.
            - mail_options : List of ESMTP options (such as 8bitmime) for the
                             mail command.
            - rcpt_options : List of ESMTP options (such as DSN commands) for
                             all the rcpt commands.
 
        If there has been no previous EHLO or HELO command this session, this
        method tries ESMTP EHLO first.  If the server does ESMTP, message size
        and each of the specified options will be passed to it.  If EHLO
        fails, HELO will be tried and ESMTP options suppressed.
 
        This method will return normally if the mail is accepted for at least
        one recipient.  It returns a dictionary, with one entry for each
        recipient that was refused.  Each entry contains a tuple of the SMTP
        error code and the accompanying error message sent by the server.
 
        This method may raise the following exceptions:
 
         SMTPHeloError          The server didn't reply properly to
                                the helo greeting.
         SMTPRecipientsRefused  The server rejected ALL recipients
                                (no mail was sent).
         SMTPSenderRefused      The server didn't accept the from_addr.
         SMTPDataError          The server replied with an unexpected
                                error code (other than a refusal of
                                a recipient).
 
        Note: the connection will be open even after an exception is raised.
 
        Example:
 
         >>> 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.
 
        tsizessize=%diúiû(R†RiRwRWRgR{RyRt
isinstancet
basestringR~RR(R( Rt    from_addrtto_addrsRt mail_optionst rcpt_optionst
esmtp_optstoptionRRZtsenderrsRs((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pytsendmails49
      
 
 
cCsH|jr|jjƒnd|_|jr;|jjƒnd|_dS(s(Close the connection to the SMTP server.N(RUR/RRJ(R((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR/çs             cCs|jdƒ}|jƒ|S(sTerminate the SMTP session.tquit(R_R/(Rtres((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR´ñs
N((RRRR>RRURaRfRhRit    SMTP_PORTRIR6t_GLOBAL_DEFAULT_TIMEOUTRR?RAR4RPRRRKR_R`R0RwRxRyRzR{R~R(R„R‚R…R†RŸR R³R/R´(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR ÅsH    $                     . 
2                                   N$ Y    
tSMTP_SSLcBs;eZdZeZdddddejd„Zd„Z    RS(sÕ 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. keyfile and certfile
        are also optional - they can contain a PEM formatted private key and
        certificate chain file for the SSL connection.
        R!icCs/||_||_tj|||||ƒdS(N(R¦R§R R(RR;R<R5R¦R§R2((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRs        cCsn|jdkr(tdI||fIJntj||f|ƒ}tj||j|jƒ}t|ƒ|_    |S(Nisconnect:(
R>RR6R@R¤R¥R¦R§R)RU(RR;R<R2t
new_socket((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRA s N(
RRRt SMTP_SSL_PORTRIRR6R·RRA(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR¸ùs     iÓtLMTPcBs5eZdZdZdedd„Zddd„ZRS(s-LMTP - 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. 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.tlhloR!cCstj||||ƒdS(sInitialize a new instance.N(R R(RR;R<R5((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR)sRBicCsî|ddkr#tj|||ƒSy/tjtjtjƒ|_|jj|ƒWn[tjk
r¯|jdkr‡tdI|IJn|jr |jj    ƒnd|_‚nX|j ƒ\}}|jdkrätdI|IJn||fS(s=Connect to the LMTP daemon, on either a Unix or a TCP socket.it/s connect fail:sconnect:N( R R4R6tAF_UNIXt SOCK_STREAMRJRHR>RR/RRK(RR;R<RR((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR4-s         N(RRRRft    LMTP_PORTRRR4(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyR»s t__main__cCs'tjj|dƒtjjƒjƒS(Ns: (tsyststdouttwritetstdinR.RX(tprompt((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyRÆHstFromtTot,sEnter message, end with ^D:R!sMessage length is %dRBi(9RR6R%t email.utilsRRˆRŠtemail.base64mimeRRRÂRt__all__R¶RºR'tcompiletIRkt    ExceptionRRRRRRRR    R
R R$R R¤t ImportErrortFalseR¢R)tTrueR R¸RWRÀR»RRÆtfromaddrRjttoaddrsRRÅR.R[RgtserverR?R³R´(((sO/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/smtplib.pyt<module>!st                               
 
ÿÿ4+