Mat*_*ins 9 configuration gmail smtp actionmailer ruby-on-rails-3.1
我已经设置了ActionMailer并且在开发中完美运行.我可以打电话UserMailer.welcome(user).deliver,电子邮件到达目的地.但是,当我将代码推送到生产中并调用相同的deliver方法时,突然出现错误:
Errno::ECONNREFUSED: Connection refused - connect(2)
from /usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/net/smtp.rb:546:in `initialize'
from /usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/net/smtp.rb:546:in `open'
from /usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/net/smtp.rb:546:in `tcp_socket'
from /usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/net/smtp.rb:555:in `block in do_start'
from /usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:58:in `timeout'
from /usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:89:in `timeout'
from /usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/net/smtp.rb:555:in `do_start'
from /usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/net/smtp.rb:525:in `start'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/gems/mail-2.3.0/lib/mail/network/delivery_methods/smtp.rb:128:in `deliver!'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/gems/mail-2.3.0/lib/mail/message.rb:1989:in `do_delivery'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/gems/mail-2.3.0/lib/mail/message.rb:230:in `block in deliver'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/bundler/gems/rails-5680a51dcbaf/actionmailer/lib/action_mailer/base.rb:414:in `block in deliver_mail'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/bundler/gems/rails-5680a51dcbaf/activesupport/lib/active_support/notifications.rb:55:in `block in instrument'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/bundler/gems/rails-5680a51dcbaf/activesupport/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/bundler/gems/rails-5680a51dcbaf/activesupport/lib/active_support/notifications.rb:55:in `instrument'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/bundler/gems/rails-5680a51dcbaf/actionmailer/lib/action_mailer/base.rb:412:in `deliver_mail'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/gems/mail-2.3.0/lib/mail/message.rb:230:in `deliver'
from (irb):10
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/bundler/gems/rails-5680a51dcbaf/railties/lib/rails/commands/console.rb:45:in `start'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/bundler/gems/rails-5680a51dcbaf/railties/lib/rails/commands/console.rb:8:in `start'
from /webapps/myapp/production/shared/bundle/ruby/1.9.1/bundler/gems/rails-5680a51dcbaf/railties/lib/rails/commands.rb:40:in `<top (required)>'
from script/rails:6:in `require'
from script/rails:6:in `<main>'
Run Code Online (Sandbox Code Playgroud)
可能我提供的最有价值的信息是delivery_methodMessage对象上的实际数据在生产中是不正确的.在开发中,当我调用时UserMailer.welcome(user).delivery_method,(格式化)输出是:
#<Mail::SMTP:0x000001042c4a20 @settings={
:address=>"smtp.gmail.com",
:port=>587,
:domain=>"foobar.com",
:user_name=>"example@foobar.com",
:password=>"MY_PASSWORD",
:authentication=>"plain",
:enable_starttls_auto=>true,
:openssl_verify_mode=>nil}>
Run Code Online (Sandbox Code Playgroud)
这显然与我在mailers.yml中定义的设置相匹配.在生产中,当我进行相同的调用时,输出为:
#<Mail::SMTP:0xbfb2c18 @settings={
:address=>"localhost",
:port=>25,
:domain=>"localhost.localdomain",
:user_name=>nil,
:password=>nil,
:authentication=>nil,
:enable_starttls_auto=>true,
:openssl_verify_mode=>nil}>
Run Code Online (Sandbox Code Playgroud)
这似乎是ActionMailer :: DeliveryMethods第22行定义的默认值,而不是mailers.yml中我自己的设置.
据我所知,我的环境应该让ActionMailer设置相同.
到config/environment.rb:
Myapp::Application.config.action_mailer.delivery_method = :smtp
Myapp::Application.config.action_mailer.smtp_settings = YAML.load_file(
Rails.root.join('config', 'mailers.yml'))[Rails.env].to_options
Run Code Online (Sandbox Code Playgroud)
配置/ mailers.yml:
default: &default
address: smtp.gmail.com
port: 587
domain: foobar.com
user_name: example@foobar.com
password: MY_PASSWORD
authentication: plain
enable_starttls_auto: true
development:
<<: *default
production:
<<: *default
Run Code Online (Sandbox Code Playgroud)
配置/环境/ development.rb:
Myapp::Application.configure do
# ...
config.action_mailer.raise_delivery_errors = false
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
config.action_mailer.interceptors = ['MailInterceptor']
# ...
end
Run Code Online (Sandbox Code Playgroud)
配置/环境/ production.rb:
Myapp::Application.configure do
# ...
config.action_mailer.default_url_options = { :host => 'foobar.com' }
# ...
end
Run Code Online (Sandbox Code Playgroud)
请注意,我也试着注释掉development.rb两个额外的行(并试图将它们添加到production.rb)没有变化 - 我仍然得到同样的错误在生产,而不是发展.
此外,虽然我不认为它是相关的,但我将包括MailIntercepter我在development.rb中引用(它只是将所有邮件重定向到我的电子邮件地址而不是测试用户的电子邮件地址):
class MailInterceptor
def self.delivering_email(message)
message.subject = "[#{message.to}] #{message.subject}"
message.to = "example+catcher@foobar.com"
end
end
Run Code Online (Sandbox Code Playgroud)
想出来,虽然它似乎违背了我认为应该是Rails 3.1配置的标准方法.
改变了这一行:
Myapp::Application.config.action_mailer.smtp_settings = YAML.load_file(
Rails.root.join('config', 'mailers.yml'))[Rails.env].try(:to_options)
Run Code Online (Sandbox Code Playgroud)
对此:
ActionMailer::Base.smtp_settings = YAML.load_file(
Rails.root.join('config', 'mailers.yml'))[Rails.env].try(:to_options)
Run Code Online (Sandbox Code Playgroud)
仍然不确定为什么前者在开发中工作而不是生产,但后者现在适合我的生产,所以这就是我现在要做的事情.
| 归档时间: |
|
| 查看次数: |
4094 次 |
| 最近记录: |