diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-08-19 01:00:47 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-08-19 01:00:56 -0600 |
| commit | 3b3481d7b4ef3ebe6b7aece9fa820ce3a71e20f8 (patch) | |
| tree | 9e948eef99ccbb2698ce5f8dce824f94f76cccc5 /sys | |
| parent | e55bd0e805f98abd7ebfa4fc1727f870ceba0da3 (diff) | |
sys/mail: restore access to sieve extensions
Diffstat (limited to '')
| -rw-r--r-- | sys/mail/default.nix | 6 |
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; |
