Ниже по ссылке:
Rails и Exchange Email Auth
1) Добавьте гем ruby-ntlm в ваш Gemfile изапустите комплект установки .
2) Добавьте библиотеку NTLM SMTP в файл config / environment.rb .
# Load the rails application
require File.expand_path('../application', __FILE__)
require 'ntlm/smtp'
# Initialize the rails application
RailsApp::Application.initialize!
3) Настройте файл среды для аутентификации с помощью NTLM.
config.active_support.deprecation = :notify
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => '<your-email-server>',
:domain => '<your-domain>',
:user_name => '<your-username>',
:password => '<your-unencrypted-password>',
:port => 25,
:authentication => :ntlm
**** Замените значения своими собственными ***