最近Redmine 2.3.2
、ダウンロードした仮想マシンから実行し、いくつかの初期設定をセットアップしました。gmail のメール設定をセットアップする必要があります。configuration.yml
で見つかったファイルopt/bitnami/apps/redmine/htdocs/config
を次のように編集しました。
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
tls: true
address: "smtp.gmail.com"
port: 587
domain: "smtp.gmail.com"
authentication: :plain
user_name: "user@gmail.com"
password: "password"
enable_starttls_auto: true
参照しようとすると、まだ次のエラーが表示されますlocalhost/redmine
We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.
何か案は?
こんにちは、返信ありがとうございます。現在、ある程度の進展があるようです :) エラーは今とは異なります: メールの送信中にエラーが発生しました (接続が拒否されました - connect(2))。以下はconfiguration.ymlです。確認のために括弧内にスペース(sp)の数を追加しました
production: (no sp)
email_delivery: (2 sp at beginning)
delivery_method: :smtp (4 sp at beginning, 1 sp between the colons)
smtp_settings: (4 sp)
enable_startttls_auto: true (6 sp,1 sp after colon)
address: "smtp.gmail.com" (6 sp,1 sp after colon)
port: '587' (6 sp,1 sp after colon,single inverted commas)
domain: "smtp.gmail.com" (6 sp, 1 sp after colon)
authentication: plain (6 sp, 1 sp after colon)
user_name: "username@gmail.com" (6 sp,1 sp after colon)
password: "1234" (6 sp, 1 sp after colon)
また、単一の逆コンマと逆コンマを削除しましたが、成功しませんでした。何が間違っている可能性がありますか?バックグラウンドで何が起こっているかについてより多くの情報を提供できるログファイルはありますか? ありがとう :)