mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-19 13:48:58 +00:00
Check for unavailable account
This commit is contained in:
parent
2b8d531d2c
commit
72aac8ef90
1 changed files with 2 additions and 1 deletions
|
@ -305,7 +305,8 @@ public class ConnectionHelper {
|
|||
(message.contains("Too many simultaneous connections") /* Gmail */ ||
|
||||
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("User is authenticated but not connected") /* Outlook */ ||
|
||||
message.contains("Account is temporarily unavailable") /* Acor.de */));
|
||||
}
|
||||
|
||||
static Boolean isSyntacticallyInvalid(Throwable ex) {
|
||||
|
|
Loading…
Reference in a new issue