vote up 1 vote down star
3

I just ran into an issue with Python's imaplib and Gmail's authentication mechanism:

>>> import imaplib
>>> imap = imaplib.IMAP4_SSL('imap.gmail.com', 993)
>>> imap.authenticate('bobdole@gmail.com', 'Bob Dole likes your style!')
Traceback (most recent call last):
  ...
imaplib.error: AUTHENTICATE command error: BAD ['TODO (not supported yet) 31if3458825wff.5']

If authentication is unsupported, how does one log in?

flag

3 Answers

vote up 2 vote down check

Instead of

>>> imap.authenticate('bobdole@gmail.com', 'Bob Dole likes your style!')

use

>>> imap.login('bobdole@gmail.com', 'Bob Dole likes your style!')
link|flag
vote up 0 vote down

I found the solution on this helpful blog post. Although Gmail doesn't support AUTHENTICATE, it does support the LOGIN capability, like so:

>>> imap.login('bobdole@gmail.com', 'Bob Dole likes your style!')
('OK', ['bobdole@gmail.com authenticated (Success)'])
link|flag
vote up 1 vote down

The following works for me:

srv = imaplib.IMAP4_SSL("imap.gmail.com")
srv.login(account, password)

I think using login() is required.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.