mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 19:35:10 +01:00
Retry quick setup with local username only
This commit is contained in:
@@ -105,6 +105,11 @@ public class EmailProvider {
|
||||
provider.keepalive = xml.getAttributeIntValue(null, "keepalive", 0);
|
||||
provider.link = xml.getAttributeValue(null, "link");
|
||||
provider.type = xml.getAttributeValue(null, "type");
|
||||
String user = xml.getAttributeValue(null, "user");
|
||||
if ("local".equals(user))
|
||||
provider.user = UserType.LOCAL;
|
||||
else if ("email".equals(user))
|
||||
provider.user = UserType.EMAIL;
|
||||
} else if ("imap".equals(name)) {
|
||||
provider.imap.host = xml.getAttributeValue(null, "host");
|
||||
provider.imap.port = xml.getAttributeIntValue(null, "port", 0);
|
||||
|
||||
Reference in New Issue
Block a user