Searched refs:SMTP (Results 1 - 17 of 17) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_smtplib.py | 167 client = smtplib.SMTP 191 # Test server thread using the specified SMTP server class 226 # NOTE: Some SMTP objects in the tests below are created with a non-default 286 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', 294 smtp = smtplib.SMTP(self.host, self.port, local_hostname='localhost', 307 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', 315 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', 324 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', 333 smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', 343 smtp = smtplib.SMTP(HOS [all...] |
H A D | test_smtpnet.py | 34 server = smtplib.SMTP(self.testServer, self.remotePort)
|
/third_party/python/Doc/includes/ |
H A D | email-dir.py | 13 from email.policy import SMTP namespace 20 SMTP server, which then does the normal delivery process. Your local machine 21 must be running an SMTP server. 31 sending the message to the SMTP server.""") 70 fp.write(msg.as_bytes(policy=SMTP)) 72 with smtplib.SMTP('localhost') as s:
|
H A D | email-simple.py | 19 # Send the message via our own SMTP server. 20 s = smtplib.SMTP('localhost')
|
H A D | email-mime.py | 24 # Send the email via our own SMTP server. 25 with smtplib.SMTP('localhost') as s:
|
H A D | email-alternative.py | 54 # Send the message via local SMTP server. 55 with smtplib.SMTP('localhost') as s:
|
/third_party/curl/lib/ |
H A D | smtp.c | 23 * RFC1870 SMTP Service Extension for Message Size 26 * RFC3207 SMTP over TLS 30 * RFC4954 SMTP Authentication 31 * RFC5321 SMTP protocol 33 * RFC6531 SMTP Extension for Internationalized Email 37 * Draft SMTP URL Interface <draft-earhart-url-smtp-00.txt> 116 * SMTP protocol handler. 120 "SMTP", /* scheme */ 204 * Checks for an ending SMTP status code at the start of the given string, but 283 * This is the ONLY way to change SMTP stat [all...] |
H A D | smtp.h | 31 * SMTP unique setup 52 /* This SMTP struct is used in the Curl_easy. All SMTP data that is 56 struct SMTP { struct 87 /* this is the 5-bytes End-Of-Body marker for SMTP */
|
H A D | urldata.h | 718 struct SMTP *smtp; 1124 int httpcode; /* Recent HTTP, FTP, RTSP or SMTP response code */
|
/third_party/python/Lib/email/ |
H A D | policy.py | 20 'SMTP', 222 SMTP = default.clone(linesep='\r\n') variable 224 SMTPUTF8 = SMTP.clone(utf8=True)
|
/third_party/python/Lib/test/test_email/ |
H A D | test_generator.py | 130 g = self.genclass(s, policy=policy.SMTP) 139 g = self.genclass(s, policy=policy.SMTP) 312 g = BytesGenerator(s, policy=policy.SMTP)
|
H A D | test_inversion.py | 33 m = message_from_bytes(msg, policy=policy.SMTP)
|
H A D | test_policy.py | 50 email.policy.SMTP: make_defaults(policy_defaults,
|
/third_party/python/Lib/ |
H A D | smtplib.py | 3 '''SMTP/ESMTP client class. 5 This should follow RFC 821 (SMTP), RFC 1869 (ESMTP), RFC 2554 (SMTP 6 Authentication) and RFC 2487 (Secure SMTP over TLS). 10 Please remember, when doing ESMTP, that the names of the SMTP service 17 >>> s=smtplib.SMTP("localhost") 60 "quoteaddr", "quotedata", "SMTP"] 76 """The command or option is not supported by the SMTP server. 83 """Not connected to any SMTP server. 86 or when an attempt is made to use the SMTP instanc 190 class SMTP: global() class [all...] |
H A D | smtpd.py | 20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by 49 # This file implements the minimal SMTP protocol as defined in RFC 5321. It 60 # SMTP errors from the backend server at all. This should be fixed 101 __version__ = 'Python SMTP proxy version 0.3' 396 # SMTP and ESMTP commands 762 s = smtplib.SMTP()
|
/third_party/curl/tests/ |
H A D | serverhelp.pm | 133 ($proto =~ /^(((FTP|HTTP|HTTP\/2|HTTP\/3|IMAP|POP3|GOPHER|SMTP|HTTP-PIPE)S?)|(TFTP|SFTP|SOCKS|SSH|RTSP|HTTPTLS|DICT|SMB|SMBS|TELNET|MQTT))$/));
|
/third_party/python/Lib/logging/ |
H A D | handlers.py | 1021 A handler class which sends an SMTP email for each logging event. 1029 line of the email. To specify a non-standard SMTP port, use the 1038 A timeout in seconds can be specified for the SMTP connection (the 1081 smtp = smtplib.SMTP(self.mailhost, port, timeout=self.timeout)
|
Completed in 15 milliseconds