Home
last modified time | relevance | path

Searched refs:SMTP (Results 1 – 25 of 193) sorted by relevance

12345678

/third_party/python/Doc/library/
Dsmtplib.rst1 :mod:`smtplib` --- SMTP protocol client
5 :synopsis: SMTP protocol client (requires sockets).
12 pair: SMTP; protocol
17 The :mod:`smtplib` module defines an SMTP client session object that can be used
18 to send mail to any internet machine with an SMTP or ESMTP listener daemon. For
19 details of SMTP and ESMTP operation, consult :rfc:`821` (Simple Mail Transfer
20 Protocol) and :rfc:`1869` (SMTP Service Extensions).
23 .. class:: SMTP(host='', port=0, local_hostname=None[, timeout], source_address=None)
25 An :class:`SMTP` instance encapsulates an SMTP connection. It has methods
26 that support a full repertoire of SMTP and ESMTP operations. If the optional
[all …]
/third_party/python/Lib/test/
Dtest_smtplib.py165 client = smtplib.SMTP
284 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
292 smtp = smtplib.SMTP(self.host, self.port, local_hostname='localhost',
305 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
313 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
322 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
331 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
341 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
350 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
362 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost',
[all …]
/third_party/curl/docs/cmdline-opts/
Dmail-rcpt-allowfails.d3 Protocols: SMTP
7 When sending data to multiple recipients, by default curl will abort SMTP
15 In case when all recipients cause RCPT TO command to fail, curl will abort SMTP
Dcrlf.d3 Protocols: FTP SMTP
8 (SMTP added in 7.40.0)
/third_party/curl/tests/data/
Dtest9024 SMTP
5 SMTP HELO
25 RFC821-only SMTP server (EHLO not supported)
Dtest9314 SMTP
15 SMTP with URL-encoded CR LF in the URL
Dtest9234 SMTP
21 SMTP VRFY
Dtest9304 SMTP
22 SMTP RSET (CUSTOMREQUEST)
Dtest9294 SMTP
22 SMTP NOOP (CUSTOMREQUEST)
Dtest9284 SMTP
25 SMTP HELP
Dtest9264 SMTP
24 SMTP unknown user VRFY
Dtest9254 SMTP
24 SMTP external VRFY
Dtest9504 SMTP
25 SMTP VRFY with custom request
Dtest9164 SMTP
20 SMTP with invalid --mail-rcpt
Dtest9274 SMTP
27 SMTP mailing list EXPN (CUSTOMREQUEST)
Dtest9114 SMTP
20 SMTP with no mail data
Dtest9524 SMTP
20 SMTP data with single dot-only line
Dtest9154 SMTP
20 SMTP without --mail-from
Dtest9244 SMTP
27 SMTP ambiguous VRFY
Dtest15205 SMTP
20 SMTP with CRLF-dot-CRLF in data
Dtest15074 SMTP
26 SMTP with multi interface and CURLE_ABORTED_BY_CALLBACK
Dtest9004 SMTP
20 SMTP
Dtest9104 SMTP
20 SMTP without terminating CRLF
Dtest30074 SMTP
20 SMTP with invalid --mail-rcpt and --mail-rcpt-allowfails
/third_party/python/Doc/includes/
Demail-dir.py13 from email.policy import SMTP
70 fp.write(msg.as_bytes(policy=SMTP))
72 with smtplib.SMTP('localhost') as s:

12345678