From 6263f88887e5dddb452912558cb8d1a262e5b095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Thu, 24 Aug 2023 23:21:07 +0300 Subject: [PATCH] Revert "gitea: enable email" This reverts commit bcf8b365c8f82251bebbbb7e3509166281ab103a. Failed to send a testing email to 'motiejus@jakstys.lt': gomail: could not send email 1: signal: aborted (core dumped) --- hosts/hel1-a/configuration.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/hosts/hel1-a/configuration.nix b/hosts/hel1-a/configuration.nix index ed0ae8b..848423f 100644 --- a/hosts/hel1-a/configuration.nix +++ b/hosts/hel1-a/configuration.nix @@ -192,14 +192,16 @@ SHOW_MILESTONES_DASHBOARD_PAGE = false; COOKIE_SECURE = true; }; - "service.explore".DISABLE_USERS_PAGE = true; log.LEVEL = "Error"; - mailer = { - ENABLED = true; - MAILER_TYPE = "sendmail"; - FROM = ""; - SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail"; - }; + # TODO: does not work with 1.7.4, getting error + # in the UI when testing the email sending workflow. + #mailer = { + # ENABLED = true; + # MAILER_TYPE = "sendmail"; + # FROM = ""; + # SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail"; + #}; + "service.explore".DISABLE_USERS_PAGE = true; }; };