From 0b8d230151f97fc8551e93d0f882b06c61104afd Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 1 Oct 2023 09:04:50 +0100 Subject: [PATCH] Temp disable proton account due to bridge issues --- home/accounts/email.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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";