1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 04:53:33 +02:00

email: fix port setting for flavor gmail.com

See https://support.google.com/mail/answer/7126229.
This commit is contained in:
Mario Rodas 2018-09-01 20:01:18 -05:00 committed by Robert Helgesson
parent 5eca556fe7
commit 7699ed3fc8
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

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