diff --git a/app/src/main/java/eu/faircode/email/Log.java b/app/src/main/java/eu/faircode/email/Log.java index 69e4118955..ed00eaf313 100644 --- a/app/src/main/java/eu/faircode/email/Log.java +++ b/app/src/main/java/eu/faircode/email/Log.java @@ -1447,6 +1447,10 @@ public class Log { ex.getCause() instanceof SocketException) return null; + if (ex instanceof ProtocolException && + ex.getCause() instanceof InterruptedException) + return null; // Interrupted waitIfIdle + if (ex instanceof MessagingException && ("Not connected".equals(ex.getMessage()) || // POP3 "connection failure".equals(ex.getMessage()) ||