Shrink list of web admins

This commit is contained in:
Nico Schottelius 2017-06-03 15:56:36 +02:00
parent 596dde28c5
commit e7da97dc7f
1 changed files with 2 additions and 6 deletions

View File

@ -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'