Consider dropped connections as too many connections

This commit is contained in:
M66B
2020-09-20 09:19:49 +02:00
parent 4a09988d66
commit 60534ae045

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) {