我试图通过gmail/actionmailer发送电子邮件,它在我的本地开发盒上运行得很好,但是当我尝试在生产服务器上运行相同的代码时,它给了我一个Net::SMTPAuthenticationError (535-5.7.8 Username and Password not accepted.
。我想这是因为gmail拒绝了我从一个未知服务器上的登录凭证,但我不确定!我该怎么解决?
背景:
我正在使用figaro gem,并在openshift服务器上设置环境变量:rhc set-env
。我已经检查了服务器上设置的环境变量。
问题here,here,和here都很好,但没有做任何事情来解决我的问题。我的问题有点不同,因为它只显示在我的服务器上,在我的本地机器上一切正常。
开发:
在开发模式下,我安装了figaro gem,并将配置文件存储在application.yml中,该文件 * 未 * 签入git。
以下是它的内容:
## config/application.yml
# Add configuration values here, as shown below.
gmail_username: 'PLACE_HOLDER_EMAIL@gmail.com'
gmail_password: 'PLACE_HOLDER_PASSWORD'
在我的控制器中:
## PLACEHOLDER_controller.rb
def create
@placeholder = Placeholder.new(placeholder_params)
respond_to do |format|
if @placeholder.save
puts "SENDING..."
puts "Sending to: #{ENV['gmail_username']}..."
PLACEHOLDERMailer.placeholder_email(some, params).deliver
puts "SENT!"
end
end
生产:
## /config/environments/production.rb
# SMTP
config.action_mailer.delivery_method = :smtp
# SMTP settings for gmail
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:user_name => "#{ENV['gmail_username']}",
:password => "#{ENV['gmail_password']}",
:authentication => "plain",
:enable_starttls_auto => true
}
生产:
我用git将代码推送到我的OpenShift仓库,服务器重新启动,表面上一切正常。除了当我创建一个新的占位符时,我从服务器得到了500。
下面是日志输出:
>> rhc tail -a MY_APP
SENDING...
Sending to: "PLACE_HOLDER_EMAIL@gmail.com"... ## This is the correct email! It's clearly pulling the proper values from ENV.
INFO -- : Rendered placeholder_mailer/placeholder_email.text.erb (0.1ms)
INFO -- :
Sent mail to 9739069711@txt.att.net (132.3ms)
INFO -- : Completed 500 Internal Server Error in 224ms
FATAL -- :
Net::SMTPAuthenticationError (535-5.7.8 Username and Password not accepted. Learn more at
):
app/controllers/placeholders_controller.rb:35:in `block in create'
app/controllers/placeholders_controller.rb:29:in `create'
这表明用户名和密码不被接受。现在,我知道我有正确的用户名和密码。我很确定这不是问题所在。我怀疑(如链接问题中所述)smtp.gmail.com拒绝我从未知服务器登录。
在任何人提出之前,我已经:
- Disabled Two Factor Authentication
- 尝试creating an application specific password并使用它。(没有用,我现在已经切换回普通账号密码了)
- Enabled access to less secure applications.
TL;DR
我正在尝试从服务器发送电子邮件。当我在服务器上运行它时,它会给我:Net::SMTPAuthenticationError (535-5.7.8 Username and Password not accepted.
.我想这是因为gmail拒绝了我来自未知服务器的登录凭据。我该怎么解决?
1条答案
按热度按时间l0oc07j21#
如果您尝试以编程方式每十分钟访问一次以上,结果将是Gmail blocks you temporarily。这是一个速率限制问题。