I have set 404 error reporting on Django 1.6 by adding, django.middleware.common.BrokenLinkEmailsMiddleware
at MIDDLEWARE_CLASSES
. I have placed it first since some of other middleware classes may interrupt. However, I am not receiving 404 errors.
EMAIL_USE_TLS =
EMAIL_HOST =
EMAIL_HOST_USER =
EMAIL_HOST_PASSWORD =
EMAIL_PORT =
Above are my email setting and have been tested.
It is annoying since on my local environment one of generic views is working however not on production and I just receive 404 without knowing the actual error.
Any suggestions please?