commit bcf8b365c8f82251bebbbb7e3509166281ab103a (tree) parent b14e7b28124facaa8ee5a5fedf1b2a0b133fa697 Author: Motiejus Jakštys <motiejus@jakstys.lt> Date: Thu, 24 Aug 2023 23:19:06 +0300 gitea: enable email Diffstat:
| M | hosts/hel1-a/configuration.nix | | | 16 | +++++++--------- |
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/hosts/hel1-a/configuration.nix b/hosts/hel1-a/configuration.nix @@ -192,16 +192,14 @@ SHOW_MILESTONES_DASHBOARD_PAGE = false; COOKIE_SECURE = true; }; - log.LEVEL = "Error"; - # 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 = "<noreply@jakstys.lt>"; - # SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail"; - #}; "service.explore".DISABLE_USERS_PAGE = true; + log.LEVEL = "Error"; + mailer = { + ENABLED = true; + MAILER_TYPE = "sendmail"; + FROM = "<noreply@jakstys.lt>"; + SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail"; + }; }; };