summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/MailCommandHandler.py4
-rw-r--r--modules/mm_mailcmd.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/MailCommandHandler.py b/Mailman/MailCommandHandler.py
index 999a94808..01f999871 100644
--- a/Mailman/MailCommandHandler.py
+++ b/Mailman/MailCommandHandler.py
@@ -1,6 +1,6 @@
"""Process maillist user commands arriving via email."""
-__version__ = "$Revision: 473 $"
+__version__ = "$Revision: 489 $"
# Try to stay close to majordomo commands, but accept common mistakes.
# Not implemented: get / index / which.
@@ -59,7 +59,7 @@ class MailCommandHandler:
mail = mm_message.IncomingMessage()
subject = mail.getheader("subject")
sender = string.lower(mail.GetSender())
- if sender in ['nobody', 'mailer-daemon', 'postmaster',
+ if sender in ['daemon', 'nobody', 'mailer-daemon', 'postmaster',
'orphanage', 'postoffice']:
# This is for what are probably delivery-failure notices of
# subscription confirmations that are, of necessity, bounced
diff --git a/modules/mm_mailcmd.py b/modules/mm_mailcmd.py
index 999a94808..01f999871 100644
--- a/modules/mm_mailcmd.py
+++ b/modules/mm_mailcmd.py
@@ -1,6 +1,6 @@
"""Process maillist user commands arriving via email."""
-__version__ = "$Revision: 473 $"
+__version__ = "$Revision: 489 $"
# Try to stay close to majordomo commands, but accept common mistakes.
# Not implemented: get / index / which.
@@ -59,7 +59,7 @@ class MailCommandHandler:
mail = mm_message.IncomingMessage()
subject = mail.getheader("subject")
sender = string.lower(mail.GetSender())
- if sender in ['nobody', 'mailer-daemon', 'postmaster',
+ if sender in ['daemon', 'nobody', 'mailer-daemon', 'postmaster',
'orphanage', 'postoffice']:
# This is for what are probably delivery-failure notices of
# subscription confirmations that are, of necessity, bounced