gmail uses port 587 for STARTTLS
https://support.google.com/mail/answer/7126229
This commit is contained in:
parent
5eca556fe7
commit
19d81983a0
|
@ -269,7 +269,7 @@ let
|
|||
|
||||
smtp = {
|
||||
host = "smtp.gmail.com";
|
||||
port = 587;
|
||||
port = if config.smtp.tls.useStartTls then 587 else 465;
|
||||
};
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue