From 02b61230c4c24ede54d8cf6799ff35892e1253e9 Mon Sep 17 00:00:00 2001 From: nescias Date: Mon, 13 Apr 2026 14:26:13 +0000 Subject: [PATCH] email: extend `mailbox.org` config flavor Add IMAP and SMTP ports. See . --- modules/accounts/email.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/accounts/email.nix b/modules/accounts/email.nix index 0701a6b02..d57528e0a 100644 --- a/modules/accounts/email.nix +++ b/modules/accounts/email.nix @@ -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") {