mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
Merge pull request #55 from em0lar/notify_mail
Add configuration option for enabling notify email
This commit is contained in:
commit
b4ecdb3563
3 changed files with 3 additions and 0 deletions
|
@ -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_user`: SMTP server username
|
||||||
* `gitea_mailer_password`: SMTP server password
|
* `gitea_mailer_password`: SMTP server password
|
||||||
* `gitea_mailer_from`: Sender mail address
|
* `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
|
### Fail2Ban configuration
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,7 @@ gitea_show_registration_button: true
|
||||||
gitea_require_signin: true
|
gitea_require_signin: true
|
||||||
gitea_enable_captcha: true
|
gitea_enable_captcha: true
|
||||||
gitea_only_allow_external_registration: false
|
gitea_only_allow_external_registration: false
|
||||||
|
gitea_enable_notify_mail: false
|
||||||
|
|
||||||
gitea_force_private: false
|
gitea_force_private: false
|
||||||
|
|
||||||
|
|
|
@ -116,6 +116,7 @@ RECAPTCHA_SITEKEY =
|
||||||
; Show Registration button
|
; Show Registration button
|
||||||
SHOW_REGISTRATION_BUTTON = {{ gitea_show_registration_button }}
|
SHOW_REGISTRATION_BUTTON = {{ gitea_show_registration_button }}
|
||||||
ALLOW_ONLY_EXTERNAL_REGISTRATION = {{ gitea_only_allow_external_registration }}
|
ALLOW_ONLY_EXTERNAL_REGISTRATION = {{ gitea_only_allow_external_registration }}
|
||||||
|
ENABLE_NOTIFY_MAIL = {{ gitea_enable_notify_mail }}
|
||||||
|
|
||||||
[mailer]
|
[mailer]
|
||||||
ENABLED = {{ gitea_mailer_enabled }}
|
ENABLED = {{ gitea_mailer_enabled }}
|
||||||
|
|
Loading…
Reference in a new issue