grails mail connection refused
- by mkoryak
it seems i have tried the mail config in the way that its docs said, but still i get:
Error 500: Executing action [x] of controller [x] caused exception: Mail server connection failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP
I am using google apps for my email so [email protected] is using gmail. i cannot get grails to send out a test message on my dev box (win 7).
my config is:
host = "smtp.gmail.com"
port = 465
username = "[email protected]"
password = "x"
props = ["mail.smtp.auth":"true",
"mail.smtp.debug":"true",
"mail.smtp.starttls.enable":"true",
"mail.smtp.socketFactory.port":"465",
"mail.smtp.socketFactory.class":"javax.net.ssl.SSLSocketFactory",
"mail.smtp.socketFactory.fallback":"false"]