mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 03:19:24 +01:00
Scan imaps/smtps
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user