You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implemented a IMAPNtlmAuthHandler class for using NTML with IMAP.
Example:
from imaplib import IMAP4
from ntlm.IMAPNtlmAuthHandler import IMAPNtlmAuthHandler
imap = IMAP4("my.imap.server")
imap.authenticate("NTLM", IMapNtlmAuthHandler(r"DOMAIN\username", "password"))
Notes:
* I moved the base64 encoding/decoding to the HTTPNtlmAuthHandler.py module
* I only did the change for 2.6, not 3.0
Original issue reported on code.google.com by [email protected] on 8 Dec 2009 at 1:32
Original issue reported on code.google.com by
[email protected]
on 8 Dec 2009 at 1:32Attachments:
The text was updated successfully, but these errors were encountered: