Home
last modified time | relevance | path

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

1234567

/external/python/cpython2/Doc/library/
Dsmtplib.rst1 :mod:`smtplib` --- SMTP protocol client
5 :synopsis: SMTP protocol client (requires sockets).
10 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[, local_hostname[, timeout]]]])
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 …]
Dsmtpd.rst1 :mod:`smtpd` --- SMTP Server
5 :synopsis: A SMTP server implementation in Python.
14 This module offers several classes to implement SMTP servers. One is a generic
26 *localaddr*. It will treat *remoteaddr* as an upstream SMTP relayer. Both
/external/python/cpython3/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 …]
Dsmtpd.rst1 :mod:`smtpd` --- SMTP Server
5 :synopsis: A SMTP server implementation in Python.
14 This module offers several classes to implement SMTP (email) servers.
27 interaction behaviour with SMTP clients.
41 *localaddr*. It will treat *remoteaddr* as an upstream SMTP relayer. Both
61 *decode_data* specifies whether the data portion of the SMTP transaction
107 managing SMTP clients.
164 between the server and a single SMTP client.
179 *decode_data* specifies whether the data portion of the SMTP transaction
/external/python/cpython2/Lib/test/
Dtest_smtplib.py65 smtp = smtplib.SMTP(HOST, self.port)
70 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
75 smtp = smtplib.SMTP(HOST, self.port, local_hostname="testhost")
83 smtp = smtplib.SMTP(HOST, self.port)
93 smtp = smtplib.SMTP(HOST, self.port, timeout=None)
100 smtp = smtplib.SMTP(HOST, self.port, timeout=30)
182 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
186 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
192 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
199 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
[all …]
/external/python/cpython3/Lib/test/
Dtest_smtplib.py75 smtp = smtplib.SMTP(HOST, self.port)
81 smtp = smtplib.SMTP(HOST, self.port,
89 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
95 smtp = smtplib.SMTP(HOST, self.port, local_hostname="testhost")
105 smtp = smtplib.SMTP(HOST, self.port)
116 smtp = smtplib.SMTP(HOST, self.port, timeout=None)
124 smtp = smtplib.SMTP(HOST, self.port, timeout=30)
130 smtp = smtplib.SMTP()
140 smtp = smtplib.SMTP()
241 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3)
[all …]
/external/autotest/client/common_lib/
Dmail_unittest.py16 class SMTP: class
44 self.cached_SMTP = mail.smtplib.SMTP
45 mail.smtplib.SMTP = SMTP
50 mail.smtplib.SMTP = self.cached_SMTP
/external/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
Dtest9294 SMTP
22 SMTP NOOP (CUSTOMREQUEST)
Dtest9304 SMTP
22 SMTP RSET (CUSTOMREQUEST)
Dtest9234 SMTP
24 SMTP VRFY
Dtest9264 SMTP
24 SMTP unknown user VRFY
Dtest9284 SMTP
25 SMTP HELP
Dtest9254 SMTP
24 SMTP external VRFY
Dtest9154 SMTP
20 SMTP without --mail-from
Dtest9164 SMTP
20 SMTP with invalid --mail-rcpt
Dtest9244 SMTP
27 SMTP ambiguous VRFY
Dtest9504 SMTP
25 SMTP VRFY with custom request
Dtest9144 SMTP
20 SMTP invalid --mail-from
Dtest15074 SMTP
26 SMTP with multi interface and CURLE_ABORTED_BY_CALLBACK
Dtest9114 SMTP
20 SMTP with no mail data
Dtest9274 SMTP
27 SMTP mailing list EXPN (CUSTOMREQUEST)
/external/python/cpython3/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:
/external/curl/docs/cmdline-opts/
Dcrlf.d3 Protocols: FTP SMTP
7 (SMTP added in 7.40.0)

1234567