From 2259af43e60407df057bb55f52efcfc581f8aa88 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Fri, 17 Jan 2014 14:22:38 -0800 Subject: [PATCH] Re-add default email addresses for email notification sender & bcc --- htsworkflow/settings.py | 4 ++++ 1 file changed, 4 insertions(+) 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 * -- 2.30.2