This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ntai
Recipients
Date 2007-06-12.07:06:22
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I overlooked that IMAP4_SSL needs the same enhancement. IMAP4_SSL's constructor should look like as follows.

    def __init__(self, host = '', port = IMAP4_SSL_PORT, keyfile = None, certfile = None, response_format = 1):
        self.keyfile = keyfile
        self.certfile = certfile
        IMAP4.__init__(self, host, port, response_format)
History
Date User Action Args
2007-08-23 16:12:54adminlinkissue1735509 messages
2007-08-23 16:12:54admincreate