summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/Defaults.py.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index 9c0a3e948..c68585446 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -355,6 +355,14 @@ DEFAULT_MAX_POSTS_BETWEEN_BOUNCES = 5
# Check for administrivia in messages sent to the main list?
DEFAULT_ADMINISTRIVIA = 1
+# List of addresses (lhs of the @) that likely come only from MTAs bouncing
+# messages. This is used in qrunner and MailCommandHandler.py to stop
+# processing or forwarding such messages.
+#
+# TBD: why orphanage? why postoffice?
+LIKELY_BOUNCE_SENDERS = ('daemon', 'mailer-daemon', 'postmaster',
+ 'orphanage', 'postoffice')
+
#####