Added app password hint

This commit is contained in:
M66B
2020-02-02 19:05:34 +01:00
parent 6bb51888a3
commit 4a08400e06
4 changed files with 12 additions and 3 deletions

View File

@@ -66,6 +66,7 @@ public class EmailProvider {
public int keepalive;
public boolean partial;
public boolean useip;
public boolean appPassword;
public String link;
public Server imap = new Server();
public Server smtp = new Server();
@@ -127,6 +128,7 @@ public class EmailProvider {
provider.keepalive = xml.getAttributeIntValue(null, "keepalive", 0);
provider.partial = xml.getAttributeBooleanValue(null, "partial", true);
provider.useip = xml.getAttributeBooleanValue(null, "useip", true);
provider.appPassword = xml.getAttributeBooleanValue(null, "appPassword", false);
provider.link = xml.getAttributeValue(null, "link");
provider.type = xml.getAttributeValue(null, "type");
String user = xml.getAttributeValue(null, "user");