diff --git a/roles/mailman/templates/settings.py.j2 b/roles/mailman/templates/settings.py.j2 index d088f08b51..d68e872143 100644 --- a/roles/mailman/templates/settings.py.j2 +++ b/roles/mailman/templates/settings.py.j2 @@ -377,9 +377,10 @@ LOGGING = { 'django.request': { 'handlers': [ 'file', - {% if env == 'production' %} - 'mail_admins', - {% endif %} + # Don't send an email on server errors, there's just too many + #{% if env == 'production' %} + #'mail_admins', + #{% endif %} ], 'level': 'DEBUG', },