Temp disable proton account due to bridge issues
This commit is contained in:
parent
31c0809912
commit
0b8d230151
|
@ -22,7 +22,7 @@
|
||||||
tls.enable = false;
|
tls.enable = false;
|
||||||
in rec {
|
in rec {
|
||||||
inherit realName;
|
inherit realName;
|
||||||
primary = lib.mkDefault true;
|
primary = lib.mkDefault false; # TEMP until fixed
|
||||||
maildir.path = "Proton";
|
maildir.path = "Proton";
|
||||||
imap = {
|
imap = {
|
||||||
inherit host tls;
|
inherit host tls;
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
passwordCommand =
|
passwordCommand =
|
||||||
"${pkgs.libsecret}/bin/secret-tool lookup email ${userName}";
|
"${pkgs.libsecret}/bin/secret-tool lookup email ${userName}";
|
||||||
imapnotify = {
|
imapnotify = {
|
||||||
enable = true;
|
enable = false; # TEMP until fixed
|
||||||
boxes = [ "INBOX" ];
|
boxes = [ "INBOX" ];
|
||||||
onNotify = "${pkgs.isync}/bin/mbsync --pull proton:INBOX";
|
onNotify = "${pkgs.isync}/bin/mbsync --pull proton:INBOX";
|
||||||
onNotifyPost =
|
onNotifyPost =
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
mbsync = {
|
mbsync = {
|
||||||
enable = true;
|
enable = false; # TEMP until fixed
|
||||||
create = "both";
|
create = "both";
|
||||||
expunge = "both";
|
expunge = "both";
|
||||||
remove = "both";
|
remove = "both";
|
||||||
|
@ -59,17 +59,17 @@
|
||||||
extraConfig.account.AuthMechs = "LOGIN";
|
extraConfig.account.AuthMechs = "LOGIN";
|
||||||
};
|
};
|
||||||
msmtp = {
|
msmtp = {
|
||||||
enable = true;
|
enable = false; # TEMP until fixed
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
tls = "off";
|
tls = "off";
|
||||||
auth = "login";
|
auth = "login";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
mu.enable = true;
|
mu.enable = false; # TEMP until fixed
|
||||||
};
|
};
|
||||||
icloud = rec {
|
icloud = rec {
|
||||||
inherit realName;
|
inherit realName;
|
||||||
primary = lib.mkDefault false;
|
primary = lib.mkDefault true; # TEMP until proton is fixed
|
||||||
maildir.path = "iCloud";
|
maildir.path = "iCloud";
|
||||||
imap.host = "imap.mail.me.com";
|
imap.host = "imap.mail.me.com";
|
||||||
smtp.host = "smtp.mail.me.com";
|
smtp.host = "smtp.mail.me.com";
|
||||||
|
|
Loading…
Reference in a new issue