HomeSort by relevance Sort by last modified time
    Searched refs:SMTP (Results 1 - 25 of 48) sorted by null

1 2

  /external/curl/docs/cmdline-opts/
crlf.d 3 Protocols: FTP SMTP
7 (SMTP added in 7.40.0)
ssl-reqd.d 3 Protocols: FTP IMAP POP3 SMTP
ssl.d 3 Protocols: FTP IMAP POP3 SMTP
mail-from.d 4 Protocols: SMTP
login-options.d 3 Protocols: IMAP POP3 SMTP
10 be used during authentication. At present only IMAP, POP3 and SMTP support
12 RFC 2384, RFC 5092 and IETF draft draft-earhart-url-smtp-00.txt
form-string.d 3 Protocols: HTTP SMTP IMAP
mail-auth.d 3 Protocols: SMTP
request.d 36 (SMTP)
37 Specifies a custom SMTP command to use instead of HELP or VRFY. (Added in 7.34.0)
oauth2-bearer.d 4 Protocols: IMAP POP3 SMTP
mail-rcpt.d 4 Protocols: SMTP
url.d 10 name matches DICT, FTP, IMAP, LDAP, POP3 or SMTP then that protocol will be
form.d 5 Protocols: HTTP SMTP IMAP
12 For SMTP and IMAP protocols, this is the mean to compose a multipart mail
110 Example: the following command sends an SMTP mime e-mail consisting in an
120 -F '=)' -F '=@textfile.txt' ... smtp://example.com
134 -F '=@localfile;encoder=base64' ... smtp://example.com
  /external/autotest/client/common_lib/
mail_unittest.py 15 # we define our needed mock SMTP
16 class SMTP:
44 self.cached_SMTP = mail.smtplib.SMTP
45 mail.smtplib.SMTP = SMTP
50 mail.smtplib.SMTP = self.cached_SMTP
mail.py 37 server = smtplib.SMTP("localhost")
  /external/python/cpython3/Doc/includes/
email-simple.py 19 # Send the message via our own SMTP server.
20 s = smtplib.SMTP('localhost')
email-dir.py 13 from email.policy import SMTP
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:
email-mime.py 27 # Send the email via our own SMTP server.
28 with smtplib.SMTP('localhost') as s:
email-alternative.py 54 # Send the message via local SMTP server.
55 with smtplib.SMTP('localhost') as s:
  /external/python/cpython2/Doc/includes/
email-simple.py 20 # Send the message via our own SMTP server, but don't include the
22 s = smtplib.SMTP('localhost')
email-alternative.py 43 # Send the message via local SMTP server.
44 s = smtplib.SMTP('localhost')
email-mime.py 28 # Send the email via our own SMTP server.
29 s = smtplib.SMTP('localhost')
  /external/python/cpython2/Lib/test/
test_smtplib.py 65 smtp = smtplib.SMTP(HOST, self.port)
66 smtp.close()
70 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
71 smtp.close()
75 smtp = smtplib.SMTP(HOST, self.port, local_hostname="testhost")
76 self.assertEqual(smtp.local_hostname, "testhost")
77 smtp.close(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_smtplib.py 65 smtp = smtplib.SMTP(HOST, self.port)
66 smtp.close()
70 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
71 smtp.close()
75 smtp = smtplib.SMTP(HOST, self.port, local_hostname="testhost")
76 self.assertEqual(smtp.local_hostname, "testhost")
77 smtp.close()
    [all...]
  /external/curl/lib/
smtp.h 29 * SMTP unique setup
50 /* This SMTP struct is used in the Curl_easy. All SMTP data that is
54 struct SMTP {
67 smtpstate state; /* Always use smtp.c:state() to change state! */
80 /* this is the 5-bytes End-Of-Body marker for SMTP */
  /external/python/cpython3/Lib/test/
test_smtplib.py 75 smtp = smtplib.SMTP(HOST, self.port)
76 smtp.close()
81 smtp = smtplib.SMTP(HOST, self.port,
83 self.assertEqual(smtp.source_address, ('127.0.0.1', 19876))
84 smtp.close()
89 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
90 smtp.close(
    [all...]

Completed in 945 milliseconds

1 2