Set GMX keep alive interval to 9 minutes

This commit is contained in:
M66B
2019-07-08 10:21:27 +02:00
parent f0039c234a
commit 91a4f527ba
4 changed files with 7 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ import java.util.Locale;
public class EmailProvider {
public String name;
public int order;
public int keepalive;
public String link;
public String type;
public String imap_host;
@@ -106,6 +107,7 @@ public class EmailProvider {
provider = new EmailProvider();
provider.name = xml.getAttributeValue(null, "name");
provider.order = xml.getAttributeIntValue(null, "order", Integer.MAX_VALUE);
provider.keepalive = xml.getAttributeIntValue(null, "keepalive", 0);
provider.link = xml.getAttributeValue(null, "link");
provider.type = xml.getAttributeValue(null, "type");
} else if ("imap".equals(name)) {