Commit 07715ce5 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'update_smtp_example' into 'master'

Update smtp example to add openssl_verify_mode

See merge request !1478
parents bc57ff0e 631bbe50
# To enable smtp email delivery for your GitLab instance do next: # To enable smtp email delivery for your GitLab instance do the following:
# 1. Rename this file to smtp_settings.rb # 1. Rename this file to smtp_settings.rb
# 2. Edit settings inside this file # 2. Edit settings inside this file
# 3. Restart GitLab instance # 3. Restart GitLab instance
...@@ -13,6 +13,7 @@ if Rails.env.production? ...@@ -13,6 +13,7 @@ if Rails.env.production?
password: "123456", password: "123456",
domain: "gitlab.company.com", domain: "gitlab.company.com",
authentication: :login, authentication: :login,
enable_starttls_auto: true enable_starttls_auto: true,
openssl_verify_mode: 'none'
} }
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment