Redmineをアップグレードしてみたが、画面上では下記メール送信のエラー。
[bash]
hostname was not match with the server certificate
[/bash]
ポイントは、enable_starttls_auto: false を付け足すこと。
まあ、それぞれの環境のsmtpサーバの設定によるのだけどね。
[bash]
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
address: "smtp.whoocus"
port: 25
authentication: :none
enable_starttls_auto: false
domain: ‘whoocus.com’
[/bash]