1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 13:57:31 +02:00

accounts.email: fix runbox.com TLS setup (#4408)

This commit is contained in:
Basile Clément 2023-09-04 20:29:18 +00:00 committed by Mikilio
parent 5d605aaaf1
commit 520facbef5
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F

View file

@ -465,9 +465,15 @@ let
})
(mkIf (config.flavor == "runbox.com") {
imap = { host = "mail.runbox.com"; };
imap = {
host = "mail.runbox.com";
port = 993;
};
smtp = { host = "mail.runbox.com"; };
smtp = {
host = "mail.runbox.com";
port = if config.smtp.tls.useStartTls then 587 else 465;
};
})
];
};