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:
nescias
2026-04-13 14:26:13 +00:00
committed by Robert Helgesson
parent d987617879
commit 02b61230c4

View File

@@ -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") {