Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/logging/
Dhandlers.py891 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/
Dhandlers.py969 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/
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.rst813 .. 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,
Dlogging.config.rst569 mailhost: localhost