/external/chromium/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/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 | 3 from smtplib import SMTP 7 class SMTP_TLS(SMTP): 8 """This class extends L{smtplib.SMTP} with TLS support.""" 17 """Puts the connection to the SMTP server into TLS mode. 19 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/chromium_org/chrome/test/functional/ |
test_utils.py | 141 def SendMail(send_from, send_to, subject, text, smtp, file_to_send=None): 150 smtp: The smtp to use, as a string. 172 smtp_obj = smtplib.SMTP(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()
|
/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...] |