From 080f6bfb66d3690e630510c77a80cbb0071d0bfa Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 21 Dec 2015 11:53:53 +0100 Subject: [PATCH] Force DEBUG=False in settings.py This is normally overriden in the local settings to be off in prod and on in testing, but it's always good to be explicit. --- pgmailmgr/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pgmailmgr/settings.py b/pgmailmgr/settings.py index d90d342..49e4421 100644 --- a/pgmailmgr/settings.py +++ b/pgmailmgr/settings.py @@ -157,6 +157,7 @@ AUTHENTICATION_BACKENDS = ( 'pgmailmgr.auth.AuthBackend', ) +DEBUG=False SESSION_COOKIE_SECURE= True SESSION_COOKIE_DOMAIN="webmail.postgresql.org" from settings_local import * -- 2.30.2