Searched refs:SMTP (Results 1 – 25 of 239) sorted by relevance
12345678910
/third_party/python/Doc/library/ |
D | smtplib.rst | 1 :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 …]
|
D | smtpd.rst | 1 :mod:`smtpd` --- SMTP Server 5 :synopsis: A SMTP server implementation in Python. 14 This module offers several classes to implement SMTP (email) servers. 26 interaction behaviour with SMTP clients. 40 *localaddr*. It will treat *remoteaddr* as an upstream SMTP relayer. Both 60 *decode_data* specifies whether the data portion of the SMTP transaction 106 managing SMTP clients. 169 between the server and a single SMTP client. 184 *decode_data* specifies whether the data portion of the SMTP transaction
|
/third_party/python/Lib/test/ |
D | test_smtplib.py | 165 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/libcurl/opts/ |
D | CURLOPT_MAIL_FROM.md | 14 CURLOPT_MAIL_FROM - SMTP sender address 27 to specify the sender's email address when sending SMTP mail with libcurl. 32 If this parameter is not specified then an empty address is sent to the SMTP 44 SMTP
|
D | CURLOPT_XOAUTH2_BEARER.md | 27 OAuth 2.0 Bearer Access Token for use with HTTP, IMAP, LDAP, POP3 and SMTP 30 Note: For IMAP, LDAP, POP3 and SMTP, the user name used to generate the 42 HTTP, IMAP, LDAP, POP3 and SMTP
|
D | CURLINFO_RESPONSE_CODE.md | 27 Pass a pointer to a long to receive the last received HTTP, FTP, SMTP or LDAP 37 HTTP, FTP, SMTP and LDAP 61 Support for SMTP responses added in 7.25.0, for OpenLDAP in 7.81.0.
|
D | CURLOPT_MAIL_RCPT_ALLOWFAILS.md | 29 When sending data to multiple recipients, by default curl aborts the SMTP 38 aborts the SMTP conversation and returns the error received from to the last 47 SMTP
|
D | CURLOPT_MAIL_RCPT.md | 14 CURLOPT_MAIL_RCPT - list of SMTP mail recipients 28 SMTP mail request. The linked list should be a fully valid list of 52 SMTP
|
/third_party/curl/tests/data/ |
D | test902 | 4 SMTP 5 SMTP HELO 25 RFC821-only SMTP server (EHLO not supported)
|
D | test931 | 4 SMTP 15 SMTP with URL-encoded CR LF in the URL
|
D | test923 | 4 SMTP 21 SMTP VRFY
|
D | test930 | 4 SMTP 22 SMTP RSET (CUSTOMREQUEST)
|
D | test929 | 4 SMTP 22 SMTP NOOP (CUSTOMREQUEST)
|
D | test926 | 4 SMTP 24 SMTP unknown user VRFY
|
D | test928 | 4 SMTP 25 SMTP HELP
|
D | test925 | 4 SMTP 24 SMTP external VRFY
|
D | test927 | 4 SMTP 27 SMTP mailing list EXPN (CUSTOMREQUEST)
|
D | test911 | 4 SMTP 20 SMTP with no mail data
|
D | test916 | 4 SMTP 20 SMTP with invalid --mail-rcpt
|
D | test924 | 4 SMTP 27 SMTP ambiguous VRFY
|
D | test950 | 4 SMTP 25 SMTP VRFY with custom request
|
D | test915 | 4 SMTP 20 SMTP without --mail-from
|
/third_party/python/Doc/includes/ |
D | email-dir.py | 13 from email.policy import SMTP 70 fp.write(msg.as_bytes(policy=SMTP)) 72 with smtplib.SMTP('localhost') as s:
|
/third_party/curl/docs/cmdline-opts/ |
D | mail-rcpt-allowfails.md | 6 Protocols: SMTP 18 When sending data to multiple recipients, by default curl aborts SMTP 27 still aborts the SMTP conversation and returns the error received from to the
|
D | crlf.md | 6 Protocols: FTP SMTP 21 (SMTP added in 7.40.0)
|
12345678910