mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 21:28:54 +00:00
Check for 'Too many concurrent connections to this mailbox'
This commit is contained in:
parent
e443b3d6ea
commit
2bf83fade3
1 changed files with 3 additions and 2 deletions
|
@ -1467,8 +1467,9 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
|||
|
||||
private boolean isMaxConnections(String message) {
|
||||
return (message != null &&
|
||||
(message.contains("Maximum number of connections") /* Dovecot */ ||
|
||||
message.contains("Too many simultaneous connections") /* Gmail */));
|
||||
(message.contains("Too many simultaneous connections") /* Gmail */ ||
|
||||
message.contains("Maximum number of connections") /* Dovecot */ ||
|
||||
message.contains("Too many concurrent connections") /* to this mailbox */));
|
||||
}
|
||||
|
||||
private ConnectivityManager.NetworkCallback networkCallback = new ConnectivityManager.NetworkCallback() {
|
||||
|
|
Loading…
Reference in a new issue