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

1 2

  /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...]
  /external/python/cpython3/Lib/test/
test_smtplib.py 78 smtp = smtplib.SMTP(HOST, self.port)
79 smtp.close()
84 smtp = smtplib.SMTP(HOST, self.port,
86 self.assertEqual(smtp.source_address, ('127.0.0.1', 19876))
87 smtp.close()
92 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
93 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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/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...]
  /prebuilts/gdb/linux-x86/lib/python2.7/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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.c 21 * RFC1870 SMTP Service Extension for Message Size
24 * RFC3207 SMTP over TLS
28 * RFC4954 SMTP Authentication
29 * RFC5321 SMTP protocol
31 * Draft SMTP URL Interface <draft-earhart-url-smtp-00.txt>
72 #include "smtp.h"
110 * SMTP protocol handler.
114 "SMTP", /* scheme */
163 /* SASL parameters for the smtp protocol *
481 struct SMTP *smtp = data->req.protop; local
620 struct SMTP *smtp = data->req.protop; local
848 struct SMTP *smtp = data->req.protop; local
914 struct SMTP *smtp = data->req.protop; local
1106 struct SMTP *smtp; local
1187 struct SMTP *smtp = data->req.protop; local
1278 struct SMTP *smtp = data->req.protop; local
1375 struct SMTP *smtp = conn->data->req.protop; local
1530 struct SMTP *smtp = data->req.protop; local
1551 struct SMTP *smtp = data->req.protop; local
    [all...]
  /prebuilts/go/darwin-x86/src/net/smtp/
example_test.go 10 "net/smtp"
14 // Connect to the remote SMTP server.
15 c, err := smtp.Dial("mail.example.com:25")
60 auth := smtp.PlainAuth("", "user@example.com", "password", hostname)
62 err := smtp.SendMail(hostname+":25", auth, from, recipients, msg)
70 auth := smtp.PlainAuth("", "user@example.com", "password", "mail.example.com")
79 err := smtp.SendMail("mail.example.com:25", auth, "sender@example.org", to, msg)
smtp.go 5 // Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321.
12 // The smtp package is frozen and is not accepting new features.
15 // https://godoc.org/?q=smtp
16 package smtp package
29 // A Client represents a client connection to an SMTP server.
49 // Dial returns a new Client connected to an SMTP server at addr.
50 // The addr must include a port, as in "mail.example.com:smtp".
101 return errors.New("smtp: Hello called after other methods")
303 // The addr must include a port, as in "mail.example.com:smtp".
305 // The addresses in the to parameter are the SMTP RCPT addresses
    [all...]
smtp_test.go 5 package smtp package
206 c.serverName = "smtp.google.com"
207 if err := c.Auth(PlainAuth("", "user", "pass", "smtp.google.com")); err != nil {
416 t.Fatalf("smtp: newclient: %v", err)
460 c.serverName = "smtp.google.com"
461 err = c.Auth(PlainAuth("", "user", "pass", "smtp.google.com"))
652 c.serverName = "smtp.google.com"
653 err = c.Auth(PlainAuth("", "user", "pass", "smtp.google.com"))
768 // smtp server, finely tailored to deal with our own client only!
  /prebuilts/go/linux-x86/src/net/smtp/
example_test.go 10 "net/smtp"
14 // Connect to the remote SMTP server.
15 c, err := smtp.Dial("mail.example.com:25")
60 auth := smtp.PlainAuth("", "user@example.com", "password", hostname)
62 err := smtp.SendMail(hostname+":25", auth, from, recipients, msg)
70 auth := smtp.PlainAuth("", "user@example.com", "password", "mail.example.com")
79 err := smtp.SendMail("mail.example.com:25", auth, "sender@example.org", to, msg)
smtp.go 5 // Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321.
12 // The smtp package is frozen and is not accepting new features.
15 // https://godoc.org/?q=smtp
16 package smtp package
29 // A Client represents a client connection to an SMTP server.
49 // Dial returns a new Client connected to an SMTP server at addr.
50 // The addr must include a port, as in "mail.example.com:smtp".
101 return errors.New("smtp: Hello called after other methods")
303 // The addr must include a port, as in "mail.example.com:smtp".
305 // The addresses in the to parameter are the SMTP RCPT addresses
    [all...]
smtp_test.go 5 package smtp package
206 c.serverName = "smtp.google.com"
207 if err := c.Auth(PlainAuth("", "user", "pass", "smtp.google.com")); err != nil {
416 t.Fatalf("smtp: newclient: %v", err)
460 c.serverName = "smtp.google.com"
461 err = c.Auth(PlainAuth("", "user", "pass", "smtp.google.com"))
652 c.serverName = "smtp.google.com"
653 err = c.Auth(PlainAuth("", "user", "pass", "smtp.google.com"))
768 // smtp server, finely tailored to deal with our own client only!
  /external/curl/tests/
serverhelp.pm 82 /^((ftp|http|imap|pop3|smtp|http-pipe)s?)(\d*)(-ipv6|)$/) {
108 ($proto =~ /^(((FTP|HTTP|HTTP\/2|IMAP|POP3|SMTP|HTTP-PIPE)S?)|(TFTP|SFTP|SOCKS|SSH|RTSP|GOPHER|HTTPTLS|DICT|SMB|SMBS|TELNET))$/));
161 $trailer = '_stunnel.log' if(lc($proto) =~ /^(ftp|http|imap|pop3|smtp)s$/);
202 (lc($proto) =~ /^(ftp|imap|pop3|smtp)s?$/));
214 (lc($proto) =~ /^(ftp|imap|pop3|smtp)s?$/));
  /external/curl/docs/cmdline-opts/
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
  /external/curl/
androidconfigure 68 --disable-smtp
  /prebuilts/go/darwin-x86/src/net/
cgo_unix_test.go 43 _, err, ok := cgoLookupPort(ctx, "tcp", "smtp")
56 _, err, ok := cgoLookupPort(ctx, "tcp", "smtp")
  /prebuilts/go/linux-x86/src/net/
cgo_unix_test.go 43 _, err, ok := cgoLookupPort(ctx, "tcp", "smtp")
56 _, err, ok := cgoLookupPort(ctx, "tcp", "smtp")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
handlers.py     [all...]
  /external/python/cpython2/Lib/logging/
handlers.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
handlers.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
handlers.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py     [all...]

Completed in 506 milliseconds

1 2