Fix manager mailing settings

This commit is contained in:
Alexandre Iooss 2022-03-11 17:34:48 +01:00
parent 4fedc48e7f
commit 06d8966393

View file

@ -38,11 +38,15 @@ ALLOWED_HOSTS = [
]
# Admins receive server errors, this is useful to be notified of potential bugs
# By default MANAGERS=ADMINS, so admins also receive upload notifications
ADMINS = [
("admin", "photos-admin@lists.crans.org"),
]
# Managers receive uploads notification
MANAGERS = [
('admin', 'photos-admin@lists.crans.org'),
]
# Use secure cookies in production
SESSION_COOKIE_SECURE = not DEBUG
CSRF_COOKIE_SECURE = not DEBUG