We use outlook.com (ex hotmail) as mail for our organisation. I'm trying to make redmine to send notifications with our outlook.com account. Redmine 2.3.1 on Debian 7 with ruby from distribution. I've found that since 2.3 option openssl_verify_mode doesn't matter, and merged with enable_starttls_auto (at least in my conf it seems like has no effect), but i'm not sure. I've tried some versions of settings in config/configuration.yml but I've failed.
default:
email_delivery:
delivery_method: :smtp
smtp_settings:
enable_starttls_auto: true
address: "smtp.live.com"
port: 587
domain: "customdomain.com"
authentication: :plain
user_name: email@customdomain.com
password: passwd
gets
An error occurred while sending mail (SSL_read:: wrong version number)
and alternative version
default:
email_delivery:
delivery_method: :smtp
smtp_settings:
enable_starttls_auto: false
address: "smtp.live.com"
port: 587
domain: "customdomain.com"
authentication: :plain
user_name: email@customdomain.com
password: passwd
gets
An error occurred while sending mail (530 5.7.0 Must issue a STARTTLS command first )
If anybody faced with such problem and have solution?