aboutsummaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2016-02-25 22:57:41 +0200
committerFilipp Lepalaan <filipp@mac.com>2016-02-25 22:57:41 +0200
commit7e5d7b1055f11551fc253b1ddccdb6d69ffdc061 (patch)
tree27ae21e3a4ab3cd41fce7c17faf78737726eaf47 /settings.py
parentf2d77bd09b25e22a352cfd85a4c88a4dce3e980b (diff)
downloadServo-7e5d7b1055f11551fc253b1ddccdb6d69ffdc061.tar.gz
Servo-7e5d7b1055f11551fc253b1ddccdb6d69ffdc061.tar.bz2
Servo-7e5d7b1055f11551fc253b1ddccdb6d69ffdc061.zip
Disable BrokenLinkEmailsMiddleware
Django 1.9 introduced some change that fires a 404 on every attachment download
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.py b/settings.py
index 9eb04a1..4776ef2 100644
--- a/settings.py
+++ b/settings.py
@@ -88,7 +88,7 @@ MIDDLEWARE_CLASSES = (
'django.contrib.messages.middleware.MessageMiddleware',
'servo.lib.middleware.LoginRequiredMiddleware',
'servo.lib.middleware.TimezoneMiddleware',
- 'django.middleware.common.BrokenLinkEmailsMiddleware',
+ #'django.middleware.common.BrokenLinkEmailsMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)