Skip to content

Commit

Permalink
Make the config file more production ready
Browse files Browse the repository at this point in the history
  • Loading branch information
cristan committed Dec 25, 2017
1 parent 5ea7136 commit a611bb3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions grails-app/conf/Config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,10 @@ log4j = {

environments {
development {
grails.mail.overrideAddress="[email protected]"
//grails.mail.disabled=true
// Uncomment this to to send all e-mails to you instead of its original address
// (and comment out grails.mail.disabled=true)
// grails.mail.overrideAddress="[email protected]"
grails.mail.disabled=true

geblokkeerdPeriode = 5000;
initieelUitstel = 0;
Expand All @@ -137,7 +139,8 @@ environments {
admin.passwordhash = '7iaw3Ur350mqGo7jwQrpkj9hiYB3Lkc/iBml1JQODbJ6wYX4oOHV+E+IvIh/1nsUNzLDBMxfqa2Ob1f1ACio/w=='
}
test {
grails.mail.overrideAddress="[email protected]"
// Uncomment this to to send all e-mails to you instead of its original address
// grails.mail.overrideAddress="[email protected]"

geblokkeerdPeriode = 5000;
initieelUitstel = 0;
Expand All @@ -147,7 +150,7 @@ environments {
}
amazondb = test;
production {
geblokkeerdPeriode = 172800000;//2 * 24 * 60 * 60 * 1000, ofwel: 2 dagen
geblokkeerdPeriode = 172800000;//2 * 24 * 60 * 60 * 1000, aka 2 days
initieelUitstel = 0;

// Null because you have to manually set the password
Expand Down

0 comments on commit a611bb3

Please sign in to comment.