]> granicus.if.org Git - python/commitdiff
Closes #12667: Added documentation for SMTPHandler secure argument.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Mon, 1 Aug 2011 10:31:52 +0000 (11:31 +0100)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Mon, 1 Aug 2011 10:31:52 +0000 (11:31 +0100)
Doc/library/logging.handlers.rst

index 378c07198fc5927c07c03a41b16ded426ccda9d6..a18cf9232939333b099ce1d631819ec371c04b62 100644 (file)
@@ -614,7 +614,7 @@ The :class:`SMTPHandler` class, located in the :mod:`logging.handlers` module,
 supports sending logging messages to an email address via SMTP.
 
 
-.. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None)
+.. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None, secure=None)
 
    Returns a new instance of the :class:`SMTPHandler` class. The instance is
    initialized with the from and to addresses and subject line of the email. The
@@ -623,6 +623,12 @@ supports sending logging messages to an email address via SMTP.
    the standard SMTP port is used. If your SMTP server requires authentication, you
    can specify a (username, password) tuple for the *credentials* argument.
 
+   To specify the use of a secure protocol (TLS), pass in a tuple to the
+   *secure* argument. This will only be used when authentication credentials are
+   supplied. The tuple should be either an empty tuple, or a single-value tuple
+   with the name of a keyfile, or a 2-value tuple with the names of the keyfile
+   and certificate file. (This tuple is passed to the
+   :meth:`smtplib.SMTP.starttls` method.)
 
    .. method:: emit(record)