public
Description: The watchdog project.
Homepage: http://watchdog.net/
Clone URL: git://github.com/aaronsw/watchdog.git
Click here to lend your support to: watchdog and make a donation at www.pledgie.com !
watchdog / config.py
100644 13 lines (12 sloc) 0.573 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
#used to encrypt cookies etc.
try:
    secret_key = file('/home/watchdog/certs/secret_key').read().strip()
except:
    secret_key = 'UuBCsl6nlTEjZASAbqNU' #not to get error while testing on non-server env
#from address in mails sent by watchdog
from_address = '"watchdog.net" <info@watchdog.net>'
maildir_path = '/home/wathdog/Maildir'
send_errors_to = 'bugs@watchdog.net'
test_email = 'test@watchdog.net' #wyr test emails to go to this
production_test_email = 'wyr_prod@watchdog.net' #all production wyr msgs and their responses go here
cache_dir = '/home/watchdog/cache'