mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 05:44:51 +02:00
Added max. TLS to provider profiles
This commit is contained in:
@@ -88,6 +88,7 @@ public class EmailProvider implements Parcelable {
|
||||
public boolean partial;
|
||||
public boolean useip;
|
||||
public boolean appPassword;
|
||||
public String maxtls;
|
||||
public String link;
|
||||
public Server imap = new Server();
|
||||
public Server smtp = new Server();
|
||||
@@ -241,6 +242,7 @@ public class EmailProvider implements Parcelable {
|
||||
provider.partial = getAttributeBooleanValue(xml, "partial", true);
|
||||
provider.useip = getAttributeBooleanValue(xml, "useip", true);
|
||||
provider.appPassword = getAttributeBooleanValue(xml, "appPassword", false);
|
||||
provider.maxtls = xml.getAttributeValue(null, "maxtls");
|
||||
provider.link = xml.getAttributeValue(null, "link");
|
||||
|
||||
String documentation = xml.getAttributeValue(null, "documentation");
|
||||
|
||||
Reference in New Issue
Block a user