我在 Mandriva Linux 中使用 BitNami Redmine Stack。尝试发送电子邮件通知会导致错误消息 -
(503 5.5.1 Error: authentication not enabled )
Redmine配置文件configuration.yml:
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
enable_starttls_auto: true
address: ...ip...
port: 25
domain: redmine@....
authentication: :plain
user_name: ....
password: ...
什么配置错误?
我稍后更改了配置:
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
tls: true
address: ...ip smtp..
port: 25
domain: ...
authentication: :plain
user_name: ...
password: ...
我添加了tls: true
,现在错误是 -
(SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello A: unknown protocol)
有一个文档 - http://wiki.bitnami.org/Applications/BitNami_Redmine
I've added openssl_verify_mode: 'none'
and removed tls: true
,然后返回原始错误消息。