From e7da97dc7f659f244a29eb19c560da543039ff1b Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 3 Jun 2017 15:56:36 +0200 Subject: [PATCH] Shrink list of web admins --- dynamicweb/settings/prod.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dynamicweb/settings/prod.py b/dynamicweb/settings/prod.py index bb6577b5..b2bb31d0 100644 --- a/dynamicweb/settings/prod.py +++ b/dynamicweb/settings/prod.py @@ -1,12 +1,8 @@ from .base import * -ADMINS = ( - ('Nico Schottelius', 'nico.schottelius@ungleich.ch'), - ('Raul Ascencio', 'raul.ascencio@yandex.com'), - ('Web team', 'web-team@ungleich.ch') +# List of people that get admin messages +ADMINS = ( (x, x + "@ungleich.ch") for x in ["web-team"] ) -) -# ('Sanghee Kim', 'sanghee.kim@ungleich.ch'), DEBUG=False EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'