Added account option for IMAP IDLE restart

This commit is contained in:
M66B
2022-09-03 11:22:44 +02:00
parent d51ffd7972
commit 1b382c3fcc
11 changed files with 2854 additions and 6 deletions

View File

@@ -84,6 +84,7 @@ public class EmailProvider implements Parcelable {
public int order;
public String type;
public int keepalive;
public boolean noop;
public boolean partial;
public boolean useip;
public boolean appPassword;
@@ -236,6 +237,7 @@ public class EmailProvider implements Parcelable {
provider.order = getAttributeIntValue(xml, "order", Integer.MAX_VALUE);
provider.keepalive = getAttributeIntValue(xml, "keepalive", 0);
provider.noop = getAttributeBooleanValue(xml, "noop", false);
provider.partial = getAttributeBooleanValue(xml, "partial", true);
provider.useip = getAttributeBooleanValue(xml, "useip", true);
provider.appPassword = getAttributeBooleanValue(xml, "appPassword", false);