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

  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
smtp.py 30 class SMTP(smtplib.SMTP):
31 """SMTP wrapper for smtplib.SMTP that implements XOAUTH."""
  /external/chromium_org/third_party/tlslite/tlslite/integration/
smtp_tls.py 6 from smtplib import SMTP
10 class SMTP_TLS(SMTP):
11 """This class extends L{smtplib.SMTP} with TLS support."""
18 """Puts the connection to the SMTP server into TLS mode.
20 If the server supports TLS, this will encrypt the rest of the SMTP
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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")
55 "quoteaddr", "quotedata", "SMTP"]
69 """Not connected to any SMTP server.
72 or when an attempt is made to use the SMTP instance before
77 """Base class for all exceptions that include an SMTP error code
    [all...]
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
40 # This file implements the minimal SMTP protocol as defined in RFC 821. It
51 # SMTP errors from the backend server at all. This should be fixed
84 __version__ = 'Python SMTP proxy version 0.2'
191 # SMTP and ESMTP commands
309 socket connection to our smtp port.
364 s = smtplib.SMTP()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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")
55 "quoteaddr", "quotedata", "SMTP"]
69 """Not connected to any SMTP server.
72 or when an attempt is made to use the SMTP instance before
77 """Base class for all exceptions that include an SMTP error code
    [all...]
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
40 # This file implements the minimal SMTP protocol as defined in RFC 821. It
51 # SMTP errors from the backend server at all. This should be fixed
84 __version__ = 'Python SMTP proxy version 0.2'
191 # SMTP and ESMTP commands
309 socket connection to our smtp port.
364 s = smtplib.SMTP()
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 263 public static final int SMTP = 25;
486 services.add(SMTP, "smtp");
  /external/clang/tools/scan-view/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
134 s = smtplib.SMTP(host=parameters.get('SMTP Server'),
135 port=parameters.get('SMTP Port'))
139 raise ReportFailure('Unable to send message via SMTP.')
  /external/lldb/test/pexpect-2.4/examples/
topip.py 90 server = smtplib.SMTP(smtp_server)
  /external/lldb/utils/test/
ras.py 65 SMTP server, which then does the normal delivery process.
83 help="""The outgoing SMTP server.""")
87 sending the message to the SMTP server.""")
170 s = smtplib.SMTP(opts.mailserver)
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-view/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
134 s = smtplib.SMTP(host=parameters.get('SMTP Server'),
135 port=parameters.get('SMTP Port'))
139 raise ReportFailure('Unable to send message via SMTP.')
  /prebuilts/misc/linux-x86/analyzer/tools/scan-view/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
134 s = smtplib.SMTP(host=parameters.get('SMTP Server'),
135 port=parameters.get('SMTP Port'))
139 raise ReportFailure('Unable to send message via SMTP.')
  /external/chromium_org/media/tools/layout_tests/
layouttest_analyzer_helpers.py 474 smtp_obj = smtplib.SMTP('localhost')
  /prebuilts/python/darwin-x86/2.7.5/bin/
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
40 # This file implements the minimal SMTP protocol as defined in RFC 821. It
51 # SMTP errors from the backend server at all. This should be fixed
84 __version__ = 'Python SMTP proxy version 0.2'
191 # SMTP and ESMTP commands
309 socket connection to our smtp port.
364 s = smtplib.SMTP()
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 2 """An RFC 2821 smtp proxy.
20 Use `classname' as the concrete SMTP proxy class. Uses `PureProxy' by
40 # This file implements the minimal SMTP protocol as defined in RFC 821. It
51 # SMTP errors from the backend server at all. This should be fixed
84 __version__ = 'Python SMTP proxy version 0.2'
191 # SMTP and ESMTP commands
309 socket connection to our smtp port.
364 s = smtplib.SMTP()
  /external/chromium_org/native_client_sdk/src/build_tools/
update_nacl_manifest.py 289 smtp_obj = smtplib.SMTP('localhost')
    [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 1530 milliseconds