mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 10:17:18 +00:00
Fallback with full timeout
This commit is contained in:
parent
ed701f5672
commit
b3b320a4ef
1 changed files with 0 additions and 6 deletions
|
@ -431,18 +431,12 @@ public class EmailService implements AutoCloseable {
|
|||
}
|
||||
}
|
||||
|
||||
String prop = "mail." + protocol + ".connectiontimeout";
|
||||
String timeout = properties.getProperty(prop);
|
||||
try {
|
||||
EntityLog.log(context, "Falling back to " + iaddr.getHostAddress());
|
||||
properties.put(prop, Integer.toString(DEFAULT_CONNECT_TIMEOUT / 2));
|
||||
_connect(iaddr.getHostAddress(), port, user, password, factory);
|
||||
return;
|
||||
} catch (MessagingException ex1) {
|
||||
EntityLog.log(context, "Fallback ex=" + ex.getMessage());
|
||||
} finally {
|
||||
if (timeout != null)
|
||||
properties.put(prop, timeout);
|
||||
}
|
||||
}
|
||||
} catch (Throwable ex1) {
|
||||
|
|
Loading…
Reference in a new issue