Home
last modified time | relevance | path

Searched refs:mailhost (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/logging/
Dhandlers.py876 def __init__(self, mailhost, fromaddr, toaddrs, subject, argument
893 if isinstance(mailhost, (list, tuple)):
894 self.mailhost, self.mailport = mailhost
896 self.mailhost, self.mailport = mailhost, None
930 smtp = smtplib.SMTP(self.mailhost, port, timeout=self._timeout)
/external/python/cpython3/Lib/logging/
Dhandlers.py930 def __init__(self, mailhost, fromaddr, toaddrs, subject, argument
949 if isinstance(mailhost, (list, tuple)):
950 self.mailhost, self.mailport = mailhost
952 self.mailhost, self.mailport = mailhost, None
988 smtp = smtplib.SMTP(self.mailhost, port, timeout=self.timeout)
/external/python/cpython2/Doc/library/
Dlogging.handlers.rst616 .. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None, secure=None)
621 port, use the (host, port) tuple format for the *mailhost* argument. If you
Dlogging.config.rst517 mailhost: localhost
/external/python/cpython3/Doc/library/
Dlogging.handlers.rst769 .. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None, secure=None, timeout…
774 the (host, port) tuple format for the *mailhost* argument. If you use a string,
Dlogging.config.rst560 mailhost: localhost