This commit is contained in:
M66B 2022-02-17 11:01:34 +01:00
parent de0cde58fb
commit ab20b97b24
1 changed files with 6 additions and 0 deletions

View File

@ -106,6 +106,7 @@ import java.net.InterfaceAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.SocketTimeoutException;
import java.net.UnknownHostException;
import java.nio.charset.StandardCharsets;
import java.security.Provider;
import java.security.Security;
@ -1579,6 +1580,11 @@ public class Log {
ex.getCause() instanceof SocketTimeoutException)
return null;
if (false &&
ex instanceof MessagingException &&
ex.getCause() instanceof UnknownHostException)
return null;
if (ex instanceof StoreClosedException ||
ex instanceof FolderClosedException ||
ex instanceof FolderClosedIOException ||