From 0473e82aed8428b99d84077764fbafeca4f91d62 Mon Sep 17 00:00:00 2001 From: Julien Malka <julien@malka.sh> Date: Sun, 25 Sep 2022 06:42:46 +0200 Subject: [PATCH] Added Sieve to mailserver --- modules/mailserver/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/mailserver/default.nix b/modules/mailserver/default.nix index d11c88e..83264fa 100644 --- a/modules/mailserver/default.nix +++ b/modules/mailserver/default.nix @@ -15,6 +15,8 @@ with lib; fqdn = "mail.julienmalka.me"; domains = [ "malka.sh" "ens.school" ]; + enableManageSieve = true; + # A list of all login accounts. To create the password hashes, use # nix run nixpkgs.apacheHttpd -c htpasswd -nbB "" "super secret password" | cut -d: -f2 loginAccounts = { @@ -41,6 +43,5 @@ with lib; sops.secrets.ensmailmondon-pw = { }; nix.gcRoots = [ inputs.simple-nixos-mailserver ]; - }; }