Temp disable proton account due to bridge issues

This commit is contained in:
Evie Litherland-Smith 2023-10-01 09:04:50 +01:00
parent 31c0809912
commit 0b8d230151

View file

@ -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";