From 86bb85c49b3ddf73ea8789ead78b7574ea3a5193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 30 Apr 2024 13:18:26 +0200 Subject: [PATCH] gitea: fix mailer fix mailer settings --- modules/web01/gitea/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/web01/gitea/default.nix b/modules/web01/gitea/default.nix index de2f9c3..e907691 100644 --- a/modules/web01/gitea/default.nix +++ b/modules/web01/gitea/default.nix @@ -29,7 +29,9 @@ in settings.mailer = { ENABLED = true; FROM = "gitea@clan.lol"; - HOST = "localhost:25"; + SMTP_ADDR = "localhost"; + SMTP_PORT = 25; + PROTOCOL = "smtps"; }; settings.log.LEVEL = "Error"; settings.service.DISABLE_REGISTRATION = false;