redmine配置邮件通知

测试邮件通知提示"hostname was not match with the server certificate"


解决方法:

修改redmine/config/configuration.yml

82行到96行

# default configuration options for all environments
default:
  # Outgoing emails configuration (see examples above)
  email_delivery:
    delivery_method: :smtp
    smtp_settings:
      
      address: smtp.kingmed.com.cn
      port: 25
      domain: kingmed.com.cn
      authentication: :login
      user_name: app
      password: "******"
      enable_starttls_auto: true
      openssl_verify_mode: 'none'
增加一行 openssl_verify_mode: 'none'

重启服务即可

你可能感兴趣的:(项目管理)