Created
June 4, 2013 16:18
-
-
Save gschueler/5707281 to your computer and use it in GitHub Desktop.
Example rundeck-config for SMTP mail configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loglevel.default = "DEBUG" | |
rdeck.base = "/var/lib/rundeck" | |
rss.enabled = true | |
dataSource { | |
dbCreate = "update" | |
url = "jdbc:h2:file:/var/lib/rundeck/data/rundeckdb;MVCC=true" | |
} | |
grails { | |
mail { | |
host = "smtp.example.com" | |
username = "user" | |
port = 587 | |
password = "pass" | |
props = ["mail.smtp.starttls.enable":"true", "mail.smtp.port":587, "mail.smtp.auth":"true"] | |
} | |
} | |
grails.mail.default.from = "[email protected]" |
This was very helpful -- thanks!
thanks a lot!
I keep on hitting this exception when I update my config to .groovy
Error initializing Grails: Error creating bean with name 'pluginManager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is groovy.lang.MissingPropertyException: No such property: config for class: java.lang.String
For anyone having issues with URL not found, don't forget to add rundeck.log4j.config.file="/etc/rundeck/log4j.properties"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for posting this!