diff --git a/Wino.Core/Integration/ImapClientPool.cs b/Wino.Core/Integration/ImapClientPool.cs index f72e07e4..b49556f7 100644 --- a/Wino.Core/Integration/ImapClientPool.cs +++ b/Wino.Core/Integration/ImapClientPool.cs @@ -81,7 +81,7 @@ namespace Wino.Core.Integration { await client.IdentifyAsync(_implementation); } - catch (ImapCommandException commandException) when (commandException.Response == ImapCommandResponse.No) + catch (ImapCommandException commandException) when (commandException.Response == ImapCommandResponse.No || commandException.Response == ImapCommandResponse.Bad) { mustDoPostAuthIdentification = true; }