Increased search timeout

This commit is contained in:
M66B
2020-02-06 13:01:11 +01:00
parent 06f8be22f2
commit e1a785afc3
11 changed files with 38 additions and 18 deletions

View File

@@ -776,7 +776,7 @@ public class FragmentIdentity extends FragmentBase {
if (check) {
// Create transport
String protocol = (starttls ? "smtp" : "smtps");
try (EmailService iservice = new EmailService(context, protocol, realm, insecure, true, true)) {
try (EmailService iservice = new EmailService(context, protocol, realm, insecure, EmailService.PURPOSE_CHECK, true)) {
iservice.setUseIp(use_ip);
iservice.connect(host, Integer.parseInt(port), auth, provider, user, password, fingerprint);
}