ADMINS = [("alex", "alex@mydomain.com"), ("matt", "matt@mydomain.com")]
DEBUG = False
How come Django doesn’t email me errors? I set up the email settings correctly, and everything else can send email just fine.
EMAIL_HOST = "mail.blah.com"
EMAIL_PORT = 25
EMAIL_HOST_USER = "blah"
EMAIL_HOST_PASSWORD = "blah"
EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = "blah@blah.com"
I want to be emailed all errors that occurred. (even though I have my own try /except blocks everywhere).
From django documentation on error-reporting:
Maybe this will help you.