From f410503e669729aac9096c08c5fcee24c2ea825a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sun, 22 Jun 2025 21:55:46 -0300 Subject: [PATCH] phantom: add support for managing email filters (managesieve) --- hosts/phantom/email.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/phantom/email.nix b/hosts/phantom/email.nix index 1951629..105113b 100644 --- a/hosts/phantom/email.nix +++ b/hosts/phantom/email.nix @@ -36,6 +36,8 @@ hashedPassword = "$2b$05$DcA9xMdvHqqQMZw2.zybI.vfKsQAJtaQ/JB.t9AHu6psstWq97m2C"; }; }; + + enableManageSieve = true; }; # Prefer ipv4 and use main ipv6 to avoid reverse DNS issues @@ -52,7 +54,7 @@ $config['smtp_host'] = "tls://${config.mailserver.fqdn}:587"; $config['smtp_user'] = "%u"; $config['smtp_pass'] = "%p"; - $config['plugins'] = [ "carddav", "archive" ]; + $config['plugins'] = [ "carddav", "archive", "managesieve" ]; ''; }; }