mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-22 15:55:57 +00:00
Handle MX record not resolving
This commit is contained in:
parent
c369c51f4f
commit
62fabef955
1 changed files with 17 additions and 13 deletions
|
@ -221,6 +221,7 @@ public class EmailProvider {
|
|||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
|
||||
try {
|
||||
// Retry at MX server addresses
|
||||
Record[] records = lookupDNS(context, domain, Type.MX);
|
||||
for (Record record : records) {
|
||||
|
@ -237,6 +238,9 @@ public class EmailProvider {
|
|||
if (autoconfig != null)
|
||||
break;
|
||||
}
|
||||
} catch (Throwable ex1) {
|
||||
Log.w(ex1);
|
||||
}
|
||||
|
||||
if (autoconfig == null)
|
||||
throw ex;
|
||||
|
|
Loading…
Reference in a new issue