Searched refs:mailhost (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/logging/ |
D | handlers.py | 891 def __init__(self, mailhost, fromaddr, toaddrs, subject, argument 908 if isinstance(mailhost, (list, tuple)): 909 self.mailhost, self.mailport = mailhost 911 self.mailhost, self.mailport = mailhost, None 945 smtp = smtplib.SMTP(self.mailhost, port, timeout=self._timeout)
|
/external/python/cpython3/Lib/logging/ |
D | handlers.py | 969 def __init__(self, mailhost, fromaddr, toaddrs, subject, argument 988 if isinstance(mailhost, (list, tuple)): 989 self.mailhost, self.mailport = mailhost 991 self.mailhost, self.mailport = mailhost, None 1027 smtp = smtplib.SMTP(self.mailhost, port, timeout=self.timeout)
|
/external/python/cpython2/Doc/library/ |
D | logging.handlers.rst | 616 .. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None, secure=None) 621 port, use the (host, port) tuple format for the *mailhost* argument. If you
|
D | logging.config.rst | 517 mailhost: localhost
|
/external/python/cpython3/Doc/library/ |
D | logging.handlers.rst | 813 .. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None, secure=None, timeout… 818 the (host, port) tuple format for the *mailhost* argument. If you use a string,
|
D | logging.config.rst | 569 mailhost: localhost
|