mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
accounts.email: fix runbox.com TLS setup (#4408)
This commit is contained in:
parent
8e49b88389
commit
886ea1d213
1 changed files with 8 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue