HI guys,
I am trying to config my gitlab to send mail.
I follow the instructions of
gitlab/config/initializers/smtp_settings.rb.sample
I have this file : gitlab/config/initializers/smtp_settings.rb
# To enable smtp email delivery for your GitLab instance do next:
# 1. Rename this file to smtp_settings.rb
# 2. Edit settings inside this file
# 3. Restart GitLab instance
#
if Rails.env.production?
Gitlab::Application.config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
address: "smtp.company.com",
port: 25,
user_name: "[email protected]",
password: "mypass",
domain: "git.company.com",
authentication: :login,
enable_starttls_auto: true
}
end
But I created a issue for me in my gitlab, and don't receive mail. I did
some mistake?
--
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.