From: Diane Trout Date: Fri, 17 Jan 2014 22:22:38 +0000 (-0800) Subject: Re-add default email addresses for email notification sender & bcc X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=2259af43e60407df057bb55f52efcfc581f8aa88 Re-add default email addresses for email notification sender & bcc --- diff --git a/htsworkflow/settings.py b/htsworkflow/settings.py index b44a588..451d54a 100644 --- a/htsworkflow/settings.py +++ b/htsworkflow/settings.py @@ -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 *