mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 21:28:54 +00:00
Filter certificate exceptions
This commit is contained in:
parent
16f7e79707
commit
9e6286cad8
1 changed files with 5 additions and 0 deletions
|
@ -99,6 +99,7 @@ import javax.mail.MessagingException;
|
|||
import javax.mail.Part;
|
||||
import javax.mail.StoreClosedException;
|
||||
import javax.mail.internet.InternetAddress;
|
||||
import javax.net.ssl.SSLPeerUnverifiedException;
|
||||
|
||||
public class Log {
|
||||
private static final int MAX_CRASH_REPORTS = 5;
|
||||
|
@ -304,6 +305,10 @@ public class Log {
|
|||
"Resetting to invalid mark".equals(ex.getMessage())))
|
||||
return false;
|
||||
|
||||
if (ex instanceof SSLPeerUnverifiedException ||
|
||||
ex instanceof EmailService.UntrustedException)
|
||||
return false;
|
||||
|
||||
// Rate limit
|
||||
int count = prefs.getInt("crash_report_count", 0) + 1;
|
||||
prefs.edit().putInt("crash_report_count", count).apply();
|
||||
|
|
Loading…
Reference in a new issue