Mac OSX Mountain Lion を実行しています
ruby: ruby 1.9.2p290 (2011-07-09 リビジョン 32553) [x86_64-darwin12.1.0]
レール: レール 3.2.3
config/enviroment/development.rb があります:
MyApp::Application.configure do
config.cache_classes = false
config.whiny_nils = true
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
config.active_support.deprecation = :log
config.action_dispatch.best_standards_support = :builtin
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: 587,
domain: "gmail.com",
authentication: :login,
enable_starttls_auto: true,
openssl_verify_mode: OpenSSL::SSL::VERIFY_NONE,
user_name: "username",
password: "password"
}
config.action_mailer.default_url_options = {host: 'localhost:3000'}
end
これは 2 週間前に動作し、コードは変更されていません。しかし、それ以来、私はマウンテン ライオンにアップグレードしました。また、ステージングと呼ばれる Git 用の追加のフックも追加しましたが、影響はありませんでした。今朝この問題に遭遇した後、コードに次のような行を追加しました。
openssl_verify_mode: OpenSSL::SSL::VERIFY_NONE
この問題に関する別の投稿で見ました。それは動かなかった。
アクション メーラーはテスターと実稼働サーバーで正常に動作しているため、これは lion へのアップグレードに関する問題であると確信しています。
お時間をいただきありがとうございます。