Adds some logging so we know which login method has failed

This commit is contained in:
Trenton Holmes 2022-04-13 13:57:39 -07:00
parent 1e9378b429
commit 330e47f0b7
2 changed files with 7 additions and 1 deletions

View File

@ -167,6 +167,7 @@ class MailAccountHandler(LoggingMixin):
M.login(account.username, account.password)
except UnicodeEncodeError:
self.log("debug", "Falling back to AUTH=PLAIN")
try:
# rfc2595 section 6 - PLAIN SASL mechanism
client: IMAP4 = M.client
@ -184,8 +185,13 @@ class MailAccountHandler(LoggingMixin):
# Need to transition out of AUTH state to SELECTED
M.folder.set("INBOX")
except Exception:
self.log(
"error",
"Unable to authenticate with mail server using AUTH=PLAIN",
)
raise MailError(f"Error while authenticating account {account}")
except Exception:
self.log("error", "Unable to authenticate with mail server")
raise MailError(f"Error while authenticating account {account}")
self.log(

View File

@ -869,7 +869,7 @@ class TestMail(DirectoriesMixin, TestCase):
"""
GIVEN:
- Mail account with password containing non-ASCII characters
- Incorrect password alue
- Incorrect password value
THEN:
- Should raise a MailError for the account
"""