kefirfromperm/grails-asynchronous-mail

Version 1.0 does different than 1.0RC-5 in production

Closed this issue · 6 comments

I tested the plugin in version 1.0RC-5 in production it worked well for me. After upgrading to version 1.0 it still works in development but not in production.

my BuildConfig:

compile ":quartz:1.0.1"
compile ":mail:1.0.1"
compile ":asynchronous-mail:1.0"

Here is the Config.groovy I use:

        grails {
            mail {
                host = "smtp.mydomain.com"
                port = 465
                username = "user"
                password = "pw"
                props = ["mail.smtp.auth":"true",
                            "mail.smtp.socketFactory.port":"465",
                            "mail.smtp.socketFactory.class":"javax.net.ssl.SSLSocketFactory",
                            "mail.smtp.socketFactory.fallback":"false" ]
            }
        }
        grails.mail.default.from="Name <info@mydomain.com>"

Do you have any idea on that? The only change I made is from asynchronous-mail:1.0RC-5 to asynchronous-mail:1.0.

How it shows up?

It just happens nothing.

Do you try to enable logging (see README.md)? Jobs are executed? Do you have configuration for the quartz plugin?

as I wrote I did not change anything except I used: compile ":asynchronous-mail:1.0"

Please, enable logging, how it described in README.md, try to send an email and give me log.

I will give you feedback after I have fully tested this.