diff options
author | Robin Houston <robin@lenny.robin> | 2011-07-08 01:14:18 +0100 |
---|---|---|
committer | Robin Houston <robin@lenny.robin> | 2011-07-08 01:14:18 +0100 |
commit | 7e46ee273c8e549cb8ccf76a1ec8db41f8bff23d (patch) | |
tree | 822112f8c96cdcb7106411e4f9c35d8ce5ea61aa | |
parent | 6358d4515e60d939aafbd9e59c1a9f5a4b778bbe (diff) |
The LibYAML parser seems to have a problem with comments at the ends of lines.
-rw-r--r-- | config/general.yml-example | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/config/general.yml-example b/config/general.yml-example index 9922437bd..07c00d0b6 100644 --- a/config/general.yml-example +++ b/config/general.yml-example @@ -19,11 +19,18 @@ STAGING_SITE: 1 # Domain used in URLs generated by scripts (e.g. for going in some emails) DOMAIN: '127.0.0.1:3000' -# Incoming email -INCOMING_EMAIL_DOMAIN: 'localhost' # e.g. 'foifa.com' -INCOMING_EMAIL_PREFIX: '' # e.g. 'foi+' -INCOMING_EMAIL_SECRET: 'xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx' # used for hash in request email address -BLACKHOLE_PREFIX: 'do-not-reply-to-this-address' # used as envelope from at the incoming email domain for cases where we don't care about failure +## Incoming email +# e.g. 'foifa.com' +INCOMING_EMAIL_DOMAIN: 'localhost' + +# e.g. 'foi+' +INCOMING_EMAIL_PREFIX: '' + +# used for hash in request email address +INCOMING_EMAIL_SECRET: 'xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx' + +# used as envelope from at the incoming email domain for cases where we don't care about failure +BLACKHOLE_PREFIX: 'do-not-reply-to-this-address' # Administration CONTACT_EMAIL: 'admin@localhost' |