pull/194/merge
M66B 3 years ago
parent de0cde58fb
commit ab20b97b24

@ -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 ||

Loading…
Cancel
Save