Rails 4: Net:: ReadTimeout при вызове ActionMailer

когда я запускаю мою программу в режиме разработки, я получаю следующую ошибку:

Net::ReadTimeout in SchoolApplicationsController#create

вот метод контроллера, который получает тайм-аут

  def create
    @school_application = SchoolApplication.new(school_application_params)
     @school_application.program_cost =    @school_application.calculate_cost_to_charge(params[:school_application][:program], params[:school_application][:duration])
    if @school_application.save
      Rails.logger.debug("Hey mufugga")
      NotificationsMailer.send_application(@school_application).deliver
      redirect_to application_path(@school_application.id)
    else  
      Rails.logger.debug(@school_application.errors.full_messages)
          @school_application.errors.full_messages.each do |msg|
        flash.now[:error] = msg
      end
      render action: "new"
    end
  end

Я уверен, что ошибка вызвана NotificationsMailer звонок, потому что когда Я комментирую, я больше не получаю ошибку.

вот мой почтовый ящик, и настройки:

class NotificationsMailer < ActionMailer::Base

  default :from => "from@fls.net"
  default :to => "ryan@fls.net"

  def send_application(application)
    @application = application 
    mail(:subject => "New Application")
  end
end

вот мой environments/development.rb настройки smtp:

Fls::Application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # In the development environment your application's code is reloaded on
  # every request. This slows down response time but is perfect for development
  # since you don't have to restart the web server when you make code changes.
  config.cache_classes = false

  # Do not eager load code on boot.
  config.eager_load = false

  # Show full error reports and disable caching.
  config.consider_all_requests_local       = true
  config.action_controller.perform_caching = false

  # Don't care if the mailer can't send.

  # Print deprecation notices to the Rails logger.
  config.active_support.deprecation = :log

  # Raise an error on page load if there are pending migrations
  config.active_record.migration_error = :page_load

  # Debug mode disables concatenation and preprocessing of assets.
  # This option may cause significant delays in view rendering with a large
  # number of complex assets.
  config.assets.debug = true
  config.action_mailer.perform_deliveries = true
  config.action_mailer.raise_delivery_errors = true

  config.action_mailer.delivery_method = :smtp
  config.action_mailer.smtp_settings = {
  address:              'secure3209.hostgator.com',
  port:                 465,
  domain:               'fls.net',
  ssl: true,
  user_name:            ENV['fls_username'],
  password:             ENV['fls_password'],
  authentication:       'plain',
  enable_starttls_auto: true  }
end

когда я пишу ENV['fls_username'] в рельсах консоль я получаю правильное значение. То же самое с паролем. Имя пользователя в формате user@fls.net - ... Это правильно или правильный формат просто "пользователь", и домен подразумевается из

3 ответов


после прочтения этой в должности Я еще раз посмотрел на Мои настройки smtp и добавил

tls: true 

изменить port: 465 to port: '465' Как я заметил, что многие пишут его как строку. Также аналогично изменилась строка "plain" на символ :plain


я столкнулся с аналогичной проблемой при подключении smtp-почты к QQ mail (business mail). Я обновил свои настройки, следуя в должности как, как показано ниже:

config.action_mailer.smtp_settings = {
address:              'smtp.exmail.qq.com',
port:                 '465',
domain:               'groobusiness.com',
user_name:            ENV['GMAIL_USER_NAME'],
password:             ENV['GMAIL_PASSWORD'],
authentication:       :plain,
enable_starttls_auto: true,
openssl_verify_mode:  'none',
ssl:                   true,
tls:                   true
}

и проблема была решена. Надеюсь, это может быть полезно для тех, кто сталкивается с этой проблемой.


добавить следующий код в intitialize

require 'net/smtp'

module Net
  class SMTP
    def tls?
      true
    end
  end
end