本番環境で確認メールを送信する工夫ができていないようです。ログにエラーはなく、sendmailは正常に機能します。これが私の本番構成です:
config.action_mailer.delivery_method = :sendmail
config.action_mailer.smtp_settings = {
:enable_starttls_auto => true, #this is the important stuff!
:address => "localhost",
:port => 25,
:domain => 'beautifulidiot.com',
:openssl_verify_mode => 'none',
:perform_deliveries => true
}
配信方法を:smtpに変更してみましたが、運が悪かったです。これはRails3.2.5です。
助けてくれてありがとう、ケビン