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 hidden or 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]" |
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
I keep on hitting this exception when I update my config to .groovy