mirror of https://github.com/M66B/FairEmail.git
Scan imaps/smtps
This commit is contained in:
parent
a2a128d032
commit
4a851d320b
|
@ -572,6 +572,7 @@ public class EmailProvider {
|
|||
List<Server> imaps = new ArrayList<>();
|
||||
// SSL
|
||||
imaps.add(new Server(domain, "imap", 993));
|
||||
imaps.add(new Server(domain, "imaps", 993));
|
||||
imaps.add(new Server(domain, "mail", 993));
|
||||
imaps.add(new Server(domain, "mx", 993));
|
||||
imaps.add(new Server(domain, null, 993));
|
||||
|
@ -600,6 +601,7 @@ public class EmailProvider {
|
|||
smtps.add(new Server(domain, null, 587));
|
||||
// SSL
|
||||
smtps.add(new Server(domain, "smtp", 465));
|
||||
smtps.add(new Server(domain, "smtps", 465));
|
||||
smtps.add(new Server(domain, "mail", 465));
|
||||
smtps.add(new Server(domain, "mx", 465));
|
||||
smtps.add(new Server(domain, null, 465));
|
||||
|
|
Loading…
Reference in New Issue