mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
email: extend mailbox.org config flavor
Add IMAP and SMTP ports. See <https://kb.mailbox.org/en/private/e-mail/e-mail-configuration>.
This commit is contained in:
committed by
Robert Helgesson
parent
d987617879
commit
02b61230c4
@@ -657,8 +657,14 @@ let
|
||||
(mkIf (config.flavor == "mailbox.org") {
|
||||
userName = mkDefault config.address;
|
||||
folders.inbox = mkDefault "INBOX";
|
||||
imap.host = "imap.mailbox.org";
|
||||
smtp.host = "smtp.mailbox.org";
|
||||
imap = {
|
||||
host = "imap.mailbox.org";
|
||||
port = 993;
|
||||
};
|
||||
smtp = {
|
||||
host = "smtp.mailbox.org";
|
||||
port = 465;
|
||||
};
|
||||
})
|
||||
|
||||
(mkIf (config.flavor == "migadu.com") {
|
||||
|
||||
Reference in New Issue
Block a user