mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 03:19:24 +01:00
Check for 'Too many concurrent connections to this mailbox'
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user