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:
parent
d987617879
commit
02b61230c4
1 changed files with 8 additions and 2 deletions
|
|
@ -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") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue