Add configuration option for enabling notify email

This commit is contained in:
Leo Maroni 2020-07-28 12:22:35 +02:00
parent b1550d80ce
commit 8f2e1bcd6a
No known key found for this signature in database
GPG Key ID: B1ADA545CD2CBACD
3 changed files with 3 additions and 0 deletions

View File

@ -114,6 +114,7 @@ The following code has been tested with Debian 8, it should work on Ubuntu as we
* `gitea_mailer_user`: SMTP server username
* `gitea_mailer_password`: SMTP server password
* `gitea_mailer_from`: Sender mail address
* `gitea_enable_notify_mail`: Whether e-mail should be send to watchers of a repository when something happens. Default: `false`
### Fail2Ban configuration

View File

@ -46,6 +46,7 @@ gitea_show_registration_button: true
gitea_require_signin: true
gitea_enable_captcha: true
gitea_only_allow_external_registration: false
gitea_enable_notify_mail: false
gitea_force_private: false

View File

@ -116,6 +116,7 @@ RECAPTCHA_SITEKEY =
; Show Registration button
SHOW_REGISTRATION_BUTTON = {{ gitea_show_registration_button }}
ALLOW_ONLY_EXTERNAL_REGISTRATION = {{ gitea_only_allow_external_registration }}
ENABLE_NOTIFY_MAIL = {{ gitea_enable_notify_mail }}
[mailer]
ENABLED = {{ gitea_mailer_enabled }}