From dda6a667826a349d5c1e496bd731c856c2b93e9a Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 9 Jan 2026 17:59:44 +0100 Subject: [PATCH] Fix gitea user to allow sending email MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In order to send email, the gitea user needs to be in the mail-robot group. Fixes: https://jungle.bsc.es/git/rarias/jungle/issues/220 Reviewed-by: Aleix Boné --- m/tent/gitea.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m/tent/gitea.nix b/m/tent/gitea.nix index 546ac5f34..5c4583068 100644 --- a/m/tent/gitea.nix +++ b/m/tent/gitea.nix @@ -27,4 +27,7 @@ }; }; }; + + # Allow gitea user to send mail + users.users.gitea.extraGroups = [ "mail-robot" ]; }