diff --git a/reviewboard/notifications/email.py b/reviewboard/notifications/email.py
index ae7ec9c63b928117ba69ac829e175dc7d6e36e5b..69b7fdc644d133913c2915f1377626610d2c42a9 100644
--- a/reviewboard/notifications/email.py
+++ b/reviewboard/notifications/email.py
@@ -124,6 +124,10 @@ class SpiffyEmailMessage(EmailMultiAlternatives):
 
         headers['Reply-To'] = from_email
 
+        # Mark the mail as 'auto-generated' (according to RFC 3834) to
+        # hopefully avoid auto replies.
+        headers['Auto-Submitted'] = 'auto-generated'
+
         super(SpiffyEmailMessage, self).__init__(subject, text_body,
                                                  from_email, to,
                                                  headers=headers)
