Re-add default email addresses for email notification sender & bcc
authorDiane Trout <diane@ghic.org>
Fri, 17 Jan 2014 22:22:38 +0000 (14:22 -0800)
committerDiane Trout <diane@ghic.org>
Fri, 17 Jan 2014 22:22:38 +0000 (14:22 -0800)
htsworkflow/settings.py

index b44a5884eda96acb4b9687b630f8197acd40e396..451d54a61ce93271fda83e0fb99b7dbbea9cae09 100644 (file)
@@ -105,6 +105,10 @@ STATIC_URL = '/static/'
 # Update this in settings_local to point to your flowcell result directory
 RESULT_HOME_DIR = os.path.join(BASE_DIR, 'test', 'results')
 
+# configure who is sending email and who should get BCCs of announcments
+NOTIFICATION_SENDER = "noreply@example.com"
+NOTIFICATION_BCC=[]
+
 try:
     # allow local customizations
     from settings_local import *