diff --git a/home/accounts/email.nix b/home/accounts/email.nix index e2c5a1c7..bbeb8f7f 100644 --- a/home/accounts/email.nix +++ b/home/accounts/email.nix @@ -22,7 +22,7 @@ tls.enable = false; in rec { inherit realName; - primary = lib.mkDefault true; + primary = lib.mkDefault false; # TEMP until fixed maildir.path = "Proton"; imap = { inherit host tls; @@ -38,7 +38,7 @@ passwordCommand = "${pkgs.libsecret}/bin/secret-tool lookup email ${userName}"; imapnotify = { - enable = true; + enable = false; # TEMP until fixed boxes = [ "INBOX" ]; onNotify = "${pkgs.isync}/bin/mbsync --pull proton:INBOX"; onNotifyPost = @@ -50,7 +50,7 @@ }; }; mbsync = { - enable = true; + enable = false; # TEMP until fixed create = "both"; expunge = "both"; remove = "both"; @@ -59,17 +59,17 @@ extraConfig.account.AuthMechs = "LOGIN"; }; msmtp = { - enable = true; + enable = false; # TEMP until fixed extraConfig = { tls = "off"; auth = "login"; }; }; - mu.enable = true; + mu.enable = false; # TEMP until fixed }; icloud = rec { inherit realName; - primary = lib.mkDefault false; + primary = lib.mkDefault true; # TEMP until proton is fixed maildir.path = "iCloud"; imap.host = "imap.mail.me.com"; smtp.host = "smtp.mail.me.com";