Merge pull request #14 from dserodio/gitlab_email_enabled

Respect gitlab_email_enabled property
This commit is contained in:
Marin Jankovski 2015-02-26 09:46:27 -08:00
commit e2982692d4
3 changed files with 7 additions and 0 deletions

View File

@ -3,6 +3,10 @@
The latest version of this file can be found at the master branch of the
omnibus-gitlab repository.
7.8.1
- Respect gitlab_email_enabled property (Daniel Serodio)
7.8.0
- Add gitlab-ci to logrotate (François Conil) 397ce5bab202d9d86e30a62538dca1323b7f6f4c

View File

@ -12,6 +12,7 @@ external_url 'GENERATED_EXTERNAL_URL'
# gitlab_rails['gitlab_ssh_host'] = 'ssh.host_example.com'
# gitlab_rails['time_zone'] = 'UTC'
# gitlab_rails['gitlab_email_enabled'] = true
# gitlab_rails['gitlab_email_from'] = 'example@example.com'
# gitlab_rails['gitlab_default_projects_limit'] = 10
# gitlab_rails['gitlab_default_can_create_group'] = true

View File

@ -30,6 +30,8 @@ production: &base
time_zone: <%= single_quote(@time_zone) %>
## Email settings
# Uncomment and set to false if you need to disable email sending from GitLab (default: true)
email_enabled: <%= @gitlab_email_enabled %>
# Email address used in the "From" field in mails sent by GitLab
email_from: <%= @gitlab_email_from %>