diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-11-25 12:41:01 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-12-22 15:50:21 +0000 |
commit | f9e69dfd60af6b1ca819406bf6d9a217cee1f319 (patch) | |
tree | 9d200ca5c5201a4dde1030085622c15b508faaeb | |
parent | ce5018e416ba2dda9b0960eb001465d77d109585 (diff) |
Don't comment out example configuration
Breaks the mySociety internal deployment tooling.
-rw-r--r-- | config/general.yml-example | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/config/general.yml-example b/config/general.yml-example index 0f32f6192..23f687fb7 100644 --- a/config/general.yml-example +++ b/config/general.yml-example @@ -172,12 +172,22 @@ VARNISH_HOST: localhost # Adding a value here will enable Google Analytics on all non-admin pages for non-admin users. GA_CODE: '' -# If you want to override *all* the public body request emails with your own -# email so that request emails that would normally go to the public body -# go to you, then uncomment below and fill in your email. -# Useful for a staging server to play with the whole process of sending requests -# without inadvertently sending an email to a real authority -#OVERRIDE_ALL_PUBLIC_BODY_REQUEST_EMAILS: test-email@foo.com + +# If you want to override all the public body request emails with your own +# email address so that request emails that would normally go to the public +# body go to you, use this setting. This is useful for a staging server, so you +# can play with the whole process of sending requests without inadvertently +# sending an email to a real authority. +# Leave blank ('') to send requests to the real authority emails. +# +# OVERRIDE_ALL_PUBLIC_BODY_REQUEST_EMAILS - String (default: nil) +# +# Examples: +# +# OVERRIDE_ALL_PUBLIC_BODY_REQUEST_EMAILS: test-email@example.com +# +# --- +OVERRIDE_ALL_PUBLIC_BODY_REQUEST_EMAILS: '' # Search path for external commandline utilities (such as pdftohtml, pdftk, unrtf) UTILITY_SEARCH_PATH: ["/usr/bin", "/usr/local/bin"] |