mirror of
https://github.com/nix-community/home-manager
synced 2024-11-11 05:39:44 +01:00
accounts.email: fix runbox.com TLS setup (#4408)
This commit is contained in:
parent
5d605aaaf1
commit
520facbef5
1 changed files with 8 additions and 2 deletions
|
@ -465,9 +465,15 @@ let
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf (config.flavor == "runbox.com") {
|
(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;
|
||||||
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue