1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 14:41:08 +00:00

Connection dropped by server

This commit is contained in:
M66B 2020-10-01 08:42:34 +02:00
parent 8a60b058fb
commit 808a6b1877

View file

@ -355,7 +355,8 @@ public class ConnectionHelper {
message.contains("Maximum number of connections") /* ... from user+IP exceeded */ /* Dovecot */ ||
message.contains("Too many concurrent connections") /* ... to this mailbox */ ||
message.contains("User is authenticated but not connected") /* Outlook */ ||
message.contains("Account is temporarily unavailable") /* Arcor.de / TalkTalk.net */));
message.contains("Account is temporarily unavailable") /* Arcor.de / TalkTalk.net */ ||
message.contains("Connection dropped by server?")));
}
static Boolean isSyntacticallyInvalid(Throwable ex) {