Authentication/read timed out

This commit is contained in:
M66B 2021-08-04 17:51:35 +02:00
parent 25326c35e3
commit 7ab829be72
1 changed files with 1 additions and 0 deletions

View File

@ -381,6 +381,7 @@ public class ConnectionHelper {
ex instanceof AccountsException ||
ex instanceof InterruptedException ||
"EOF on socket".equals(ex.getMessage()) ||
"Read timed out".equals(ex.getMessage()) || // POP3
"failed to connect".equals(ex.getMessage()))
return true;
ex = ex.getCause();