summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-08-19 01:00:47 -0600
committerAlejandro Soto <alejandro@34project.org>2024-08-19 01:00:56 -0600
commit3b3481d7b4ef3ebe6b7aece9fa820ce3a71e20f8 (patch)
tree9e948eef99ccbb2698ce5f8dce824f94f76cccc5
parente55bd0e805f98abd7ebfa4fc1727f870ceba0da3 (diff)
sys/mail: restore access to sieve extensions
-rw-r--r--sys/mail/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/mail/default.nix b/sys/mail/default.nix
index 6c1b610..0e789ae 100644
--- a/sys/mail/default.nix
+++ b/sys/mail/default.nix
@@ -43,6 +43,12 @@ in
mailLocation = "maildir:~/mail";
mailPlugins.perProtocol.lmtp.enable = [ "sieve" ];
+ # https://github.com/NixOS/nixpkgs/issues/286859
+ sieve.extensions = [
+ "fileinto"
+ "mailbox"
+ ];
+
extraConfig =
let
inherit (config.networking) domain;