Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b91b86c6 authored by cketti's avatar cketti
Browse files

Change SMTP default port to 587

parent 6c1b3cbc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ public class SmtpTransport extends Transport {
        String scheme = smtpUri.getScheme();
        if (scheme.equals("smtp")) {
            connectionSecurity = ConnectionSecurity.NONE;
            port = 25;
            port = 587;
        } else if (scheme.equals("smtp+tls")) {
            connectionSecurity = ConnectionSecurity.STARTTLS_OPTIONAL;
            port = 587;