Defect #15038
closedEmail test failed: no implicit conversion of true into String
0%
Description
Hi,
I tray to set up e-mail on Redmine 2.3.3, and after click on "e-mail test" I get: error (no implicit conversion of true into String)
Email server MS Exchange.
I have 2 instalation of Redmine 1.1.3 and 2.0.3 both of them work fine with this server.
Now I tray to upgrade 1.1.3 to 2.3.3 - all work fine except e-mail
development:
email_delivery:
delivery_method: :smtp
smtp_settings:
- tls: false
enable_starttls_auto: true
address: "MS Exchange server"
port: 587
authentication: :login
domain: "domain"
user_name: "xxx"
password: "xxx"
attachments_storage_path: /opt/redmine/files
Updated by Toshi MARUYAMA about 12 years ago
- Category set to Email notifications
Updated by Sergey Katasonov about 12 years ago
I found decision. In my case working configuration is:
development:
email_delivery:
delivery_method: :smtp
smtp_settings:
openssl_verify_mode: 'none'
enable_starttls_auto: true
address: "MS Exchange server"
port: 587
authentication: :login
domain: "domain"
user_name: "xxx"
password: "xxx"
The error message "no implicit conversion of true into String" is very uninformative. I have spent a lot of time to find what I do wrong.
Updated by Sergey Katasonov about 12 years ago
- Status changed from New to Resolved
Updated by Toshi MARUYAMA about 12 years ago
- Status changed from Resolved to Closed
Thank you for your feedback.