I'm going crazy with rundeck and this grails configuration for mail, I'm trying to connect to my smtp server running STARTSSL on 587 (self signed cert) here is my configuration:
grails.mail.host=smtp.myhost.com
grails.mail.port=587
grails.mail.username=username
grails.mail.password=password
grails.mail.smtp.auth="true"
grails.mail.starttls.enable=true
grails.mail.props["mail.smtp.auth":"true","mail.smtp.starttls.enable":"true","mail.smtp.socketFactory.port":"587"``,"mail.smtp.socketFactory.class":"javax.net.ssl.SSLSocketFactory","mail.smtp.socketFactory.fallback":"false,"mail.smtp.port":"587"]
grails.mail.default.from=rundeck@myhost.com
I read all the issues about it on Stack Overflow but without result...