Fix manager mailing settings
This commit is contained in:
parent
4fedc48e7f
commit
06d8966393
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue