flora-6: enable gitea mail notifications #215

Merged
b12f merged 1 commit from infra-gitea-enable-mail-notifications into infra 2023-04-11 16:42:14 +00:00

View file

@ -33,8 +33,9 @@
settings = { settings = {
mailer = { mailer = {
ENABLED = true; ENABLED = true;
MAILER_TYPE = "smtp"; PROTOCOL = "smtps";
HOST = "mx2.greenbaum.cloud:465"; SMTP_ADDR = "mx2.greenbaum.cloud";
SMTP_PORT = 465;
FROM = ''"pub.solar git server" <gitea@pub.solar>''; FROM = ''"pub.solar git server" <gitea@pub.solar>'';
USER = "admins@pub.solar"; USER = "admins@pub.solar";
}; };
@ -49,6 +50,7 @@
# uncomment after initial deployment, first user is admin user # uncomment after initial deployment, first user is admin user
# required to setup SSO (oauth openid-connect, keycloak auth provider) # required to setup SSO (oauth openid-connect, keycloak auth provider)
service.ALLOW_ONLY_EXTERNAL_REGISTRATION = true; service.ALLOW_ONLY_EXTERNAL_REGISTRATION = true;
service.ENABLE_NOTIFY_MAIL = true;
session.COOKIE_SECURE = lib.mkForce true; session.COOKIE_SECURE = lib.mkForce true;
}; };
}; };