2012-05-21 107 views
0

我試圖從我的Rails 3.2應用程序發送設計確認電子郵件。然而,當它被送到我得到以下錯誤:Gmail連接錯誤10061 rails 3.2.1

421 Cannot connect to SMTP server, connect error 10061

即時通訊目前使用我的enviroments/development.rb這些配置設置:

config.action_mailer.raise_delivery_errors = true 
config.action_mailer.perform_deliveries = true 
ActionMailer::Base.smtp_settings = { 
    :address  => 'smtp.gmail.com', 
    :domain   => 'gmail.com', 
    :port   => 587, 
    :user_name  => '[email protected]', 
    :password  => 'password', 
    :authentication => :plain, 
    :enable_starttls_auto => true 
} 

有什麼在配置不見了?

回答

0

我相信,如果你是從localhost做這個,你的域名是錯誤的。它應該是這樣的:

:domain => "localhost.localdomain" 

一般情況下,你會希望有這樣的事情:

:domain =>'your.host.name'