Ruby / Rails ActionMailer无法与NTLM一起使用 [英] Ruby/Rails ActionMailer not working with NTLM

查看:98
本文介绍了Ruby / Rails ActionMailer无法与NTLM一起使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在我的项目中设置一个邮件程序,并且在通过Exchange SMTP服务器发送邮件时遇到困难。

I am setting up a mailer in my project and I am having difficulties sending mail through Exchange SMTP server.

我已经安装了gem ruby-ntlm ,但是我仍然得到无法识别的身份验证类型

I have installed the gem ruby-ntlm but I am still getting unrecognized authentication type.

这是我的代码

environment.rb

# Load the Rails application.
require File.expand_path('../application', __FILE__)
require 'ntlm/smtp'

# Initialize the Rails application.
Rails.application.initialize!

notifier.rb

class Notifier < ActionMailer::Base
  default :from => "stephen.edwards@foostix.lu"

  def test
    mail(:to => "stephen.edwards@foostix.lu", :subject => "Test subject").deliver
  end
end

development.rb

  config.action_mailer.delivery_method = :smtp
  config.action_mailer.smtp_settings = {
    :address => "**REMOVED**",
    :port => 587, 
    :domain => "CMSAD",   
    :user_name => "**REMOVED**", 
    :password => "**REMOVED**", 
    :authentification => :ntlm,
    :enable_starttls_auto => false
  }

Rails控制台测试

Notifier#test: processed outbound mail in 5591.8ms
Net::SMTPAuthenticationError: 504 5.7.4 Unrecognized authentication type

        from /home/stephen/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/net/smtp.rb:968:in `check_auth_response'
        from /home/stephen/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/net/smtp.rb:739:in `auth_plain'
        from /home/stephen/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/net/smtp.rb:731:in `authenticate'
        from /home/stephen/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/net/smtp.rb:566:in `do_start'
        from /home/stephen/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/net/smtp.rb:519:in `start'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/mail-2.6.3/lib/mail/network/delivery_methods/smtp.rb:112:in `deliver!'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/mail-2.6.3/lib/mail/message.rb:2141:in `do_delivery'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/mail-2.6.3/lib/mail/message.rb:236:in `block in deliver'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/actionmailer-4.1.8/lib/action_mailer/base.rb:527:in `block in deliver_mail'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/notifications.rb:159:in `block in instrument'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/notifications.rb:159:in `instrument'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/actionmailer-4.1.8/lib/action_mailer/base.rb:525:in `deliver_mail'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/mail-2.6.3/lib/mail/message.rb:236:in `deliver'
        from /media/development/Foostix-web/app/mailers/notifier.rb:5:in `test'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.8/lib/abstract_controller/base.rb:189:in `process_action'
... 15 levels...
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/railties-4.1.8/lib/rails/commands/console.rb:9:in `start'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/railties-4.1.8/lib/rails/commands/commands_tasks.rb:69:in `console'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/railties-4.1.8/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/railties-4.1.8/lib/rails/commands.rb:17:in `<top (required)>'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:247:in `require'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:247:in `block in require'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:232:in `load_dependency'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:247:in `require'
        from /media/development/Foostix-web/bin/rails:8:in `<top (required)>'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:241:in `load'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:241:in `block in load'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:232:in `load_dependency'
        from /home/stephen/.rvm/gems/ruby-2.1.0/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:241:in `load'
        from /home/stephen/.rvm/rubies/ruby-2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/core_ext/kernel_require.rb:54:in `require'
        from /home/stephen/.rvm/rubies/ruby-2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/core_ext/kernel_require.rb:54:in `require'

无论如何都有效...

smtp = Net::SMTP.new('**REMOVED**', 587)
smtp.debug_output = $stdout
smtp.enable_starttls_auto#skip if not needed
smtp.start("CMSAD", "**REMOVED**", "**REMOVED**", :ntlm)

TLS connection started
<- "EHLO CMSAD\r\n"
-> "250-**REMOVED** Hello [**REMOVED**]\r\n"
-> "250-SIZE 104857600\r\n"
-> "250-PIPELINING\r\n"
-> "250-DSN\r\n"
-> "250-ENHANCEDSTATUSCODES\r\n"
-> "250-AUTH GSSAPI NTLM LOGIN\r\n"
-> "250-8BITMIME\r\n"
-> "250-BINARYMIME\r\n"
-> "250 CHUNKING\r\n"
<- "AUTH NTLM **REMOVED**==\r\n"
-> "334 **REMOVED**\r\n"
<- **REMOVED**\r\n"
-> "235 2.7.0 Authentication successful\r\n"
 => #<Net::SMTP **REMOVED** started=true>


推荐答案

发现了一个错字,现在可以使用!

Found a typo, it is now working!

development.rb

:authentification =>:ntlm 更改为:authentication =>:ntlm

仍然感谢您的支持!

这篇关于Ruby / Rails ActionMailer无法与NTLM一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆