Commit 65cf5957deec1816f867f0285b34f314599c905a

Authored by Jeroen van Baarsen
1 parent d54d3324

Removed the Support Email setting

This setting was not longer used in GitLab, so i think it can be
removed.

Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
config/gitlab.yml.example
... ... @@ -35,9 +35,6 @@ production: &amp;base
35 35 # Email address used in the "From" field in mails sent by GitLab
36 36 email_from: example@example.com
37 37  
38   - # Email address of your support contact (default: same as email_from)
39   - support_email: support@example.com
40   -
41 38 # Email server smtp settings are in [a separate file](initializers/smtp_settings.rb.sample).
42 39  
43 40 ## User settings
... ...
config/initializers/1_settings.rb
... ... @@ -79,7 +79,6 @@ Settings.gitlab[&#39;port&#39;] ||= Settings.gitlab.https ? 443 : 80
79 79 Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
80 80 Settings.gitlab['protocol'] ||= Settings.gitlab.https ? "https" : "http"
81 81 Settings.gitlab['email_from'] ||= "gitlab@#{Settings.gitlab.host}"
82   -Settings.gitlab['support_email'] ||= Settings.gitlab.email_from
83 82 Settings.gitlab['url'] ||= Settings.send(:build_gitlab_url)
84 83 Settings.gitlab['user'] ||= 'git'
85 84 Settings.gitlab['user_home'] ||= begin
... ...