我最近在 Amazon EC2 实例中安装了 Redmine,它似乎运行良好,但是我不知道如何设置电子邮件通知。
Redmine 文档相当过时,我已经尝试了很多替代方案。请注意,我不是 RoR 程序员。
这是我的 configuration.yml 文件:
...
delivery_method: :smtp
smtp_settings:
tls: true
enable_starttls_auto: true
address: "smtp.gmail.com"
port: 587
domain: "dnd1.com" # 'your.domain.com' for GoogleApps
authentication: :plain
user_name: "[email protected]"
password: "mypassword"
...
我不断收到这个错误:
(SSL_connect returned=1 errno=0 state=unknown state: unknown protocol)
答案1
尝试删除
tls: true
作为配置的一部分,如果您正在独立运行 Redmine 服务器,请重新启动它并检查它是否正常工作。