From c1d23b691e758f75c749818da814bfcb7b16ea40 Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Wed, 12 Oct 2022 09:54:03 +0200 Subject: [PATCH] Added roundcube --- modules/mailserver/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/modules/mailserver/default.nix b/modules/mailserver/default.nix index 83264fa..291663d 100644 --- a/modules/mailserver/default.nix +++ b/modules/mailserver/default.nix @@ -22,7 +22,7 @@ with lib; loginAccounts = { "julien@malka.sh" = { hashedPasswordFile = "/run/secrets/malkash-pw"; - aliases = [ "postmaster@malka.sh" ]; + catchAll = [ "malka.sh" ]; }; "julien.malka@ens.school" = { hashedPasswordFile = "/run/secrets/ensmailmalka-pw"; @@ -31,13 +31,16 @@ with lib; hashedPasswordFile = "/run/secrets/ensmailmondon-pw"; }; - "docs@malka.sh" = { - hashedPassword = "$2y$05$NdEncXtSDspL0reJDrm1NubqOrSi2IO.4qVJvsUVFDsAdItVuc2Fa"; - }; }; certificateScheme = 3; }; + services.roundcube = { + enable = true; + plugins = [ "managesieve" ]; + hostName = "webmail.julienmalka.me"; + }; + sops.secrets.malkash-pw = { }; sops.secrets.ensmailmalka-pw = { }; sops.secrets.ensmailmondon-pw = { };