Fixed mbsync not able to use cat

This commit is contained in:
Julien Malka 2022-01-03 13:43:01 +01:00
parent adb104946e
commit 29198ae459
No known key found for this signature in database
GPG key ID: 3C68E13964FEA07F
2 changed files with 5 additions and 5 deletions

View file

@ -84,7 +84,7 @@ message = chefs
[InboxFilter]
[MailMover]
folders = ens/INBOX ens/DG
folders = ens/Inbox ens/DG
rename = True
ens/INBOX = 'tag:dg':ens/DG 'tag:COF':ens/COF 'tag:fanfare':ens/Fanfare 'tag:kfet':ens/K-Fet 'tag:chefs':ens/K-Fet/Chefs
ens/Inbox = 'tag:dg':ens/DG 'tag:COF':ens/COF 'tag:fanfare':ens/Fanfare 'tag:kfet':ens/K-Fet 'tag:chefs':ens/K-Fet/Chefs
ens/DG = 'tag:externement':ens/DG/Externements 'tag:malle':ens/DG/Malles 'tag:thurnage':ens/DG/Thurnages 'tag:situation':ens/DG/Situations 'tag:fermeture':ens/DG/Fermeture

View file

@ -29,7 +29,7 @@ with lib;
msmtp.enable = true;
primary = true;
realName = "Julien Malka";
passwordCommand = "cat /home/julien/.config/ens-mail-passwd";
passwordCommand = "${pkgs.coreutils}/bin/cat /home/julien/.config/ens-mail-passwd";
smtp = {
host = "clipper.ens.fr";
};
@ -38,8 +38,8 @@ with lib;
};
services.mbsync = {
enable = true;
frequency = "*-*-* *:*:00";
verbose = false;
frequency = "minutely";
verbose = true;
};
xdg.configFile = {
"neomutt/neomuttrc".source = lib.mkForce ./neomuttrc;