Check pop3 host too

This commit is contained in:
M66B
2022-11-15 21:36:29 +01:00
parent f378035904
commit 3521954285

View File

@@ -337,6 +337,8 @@ public class EmailProvider implements Parcelable {
for (EmailProvider provider : loadProfiles(context)) {
if (provider.imap != null && host.equals(provider.imap.host))
return provider;
if (provider.pop != null && host.equals(provider.pop.host))
return provider;
if (provider.smtp != null && host.equals(provider.smtp.host))
return provider;
}