email: add fastmail.com email flavor (#2457)

main
Jack McCown 3 years ago committed by GitHub
parent 520adafcb9
commit f7a37ad0b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      modules/accounts/email.nix

@ -188,7 +188,7 @@ let
};
flavor = mkOption {
type = types.enum [ "plain" "gmail.com" "runbox.com" ];
type = types.enum [ "plain" "gmail.com" "runbox.com" "fastmail.com" ];
default = "plain";
description = ''
Some email providers have peculiar behavior that require
@ -328,7 +328,17 @@ let
name = name;
maildir = mkOptionDefault { path = "${name}"; };
}
(mkIf (config.flavor == "fastmail.com") {
userName = mkDefault config.address;
smtp = {
host = "smtp.fastmail.com";
port = if config.smtp.tls.useStartTls then 587 else 465;
};
imap = {
host = "imap.fastmail.com";
port = 993;
};
})
(mkIf (config.flavor == "gmail.com") {
userName = mkDefault config.address;

Loading…
Cancel
Save