diff --git a/modules/accounts/email.nix b/modules/accounts/email.nix index e3f6f044..289afb2a 100644 --- a/modules/accounts/email.nix +++ b/modules/accounts/email.nix @@ -372,6 +372,7 @@ let "migadu.com" "outlook.office365.com" "plain" + "posteo.de" "runbox.com" "yandex.com" ]; @@ -619,6 +620,24 @@ let }; }) + ( + let + tls.enable = true; + host = "posteo.de"; + in + mkIf ("posteo.de" == config.flavor) { + userName = mkDefault config.address; + imap = { + inherit host tls; + port = 993; + }; + smtp = { + inherit host tls; + port = 465; + }; + } + ) + (mkIf (config.flavor == "runbox.com") { imap = { host = "mail.runbox.com";