the smtp error for version 6.2
Created by: yitudaodi
my smtp_settings.rb:
if Rails.env.production? do
Gitlab::Application.config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
address: "smtp.xx.com",
port: 25,
user_name: "[email protected]",
password: "xxxxxx",
domain: "xx.xx",
authentication: 'plain',
enable_starttls_auto: true
}
end
as the syntax error,I add a 'end' after the 'end',like this:
}
end
end
but another error in here
my error:
NO ERROR :(
no error in my log,but my smtp server not receive any request:(
can you help me?