gmail uses port 587 for STARTTLS

https://support.google.com/mail/answer/7126229
This commit is contained in:
Mario Rodas 2018-09-01 20:01:18 -05:00
parent 5eca556fe7
commit 19d81983a0

View file

@ -269,7 +269,7 @@ let
smtp = {
host = "smtp.gmail.com";
port = 587;
port = if config.smtp.tls.useStartTls then 587 else 465;
};
})