summaryrefslogtreecommitdiff
path: root/Mailman/Handlers/Cleanse.py
diff options
context:
space:
mode:
authorbwarsaw2001-02-15 04:43:30 +0000
committerbwarsaw2001-02-15 04:43:30 +0000
commit6aa7247ab3274044022d56b6b38a77305d858fd9 (patch)
tree8c831309abd5737fda0a7e30c933cac6646deb38 /Mailman/Handlers/Cleanse.py
parent310b234d16702b2254bb96b6302b07bfbd97446a (diff)
downloadmailman-6aa7247ab3274044022d56b6b38a77305d858fd9.tar.gz
mailman-6aa7247ab3274044022d56b6b38a77305d858fd9.tar.zst
mailman-6aa7247ab3274044022d56b6b38a77305d858fd9.zip
Diffstat (limited to 'Mailman/Handlers/Cleanse.py')
-rw-r--r--Mailman/Handlers/Cleanse.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/Mailman/Handlers/Cleanse.py b/Mailman/Handlers/Cleanse.py
index 7d9f6056d..5d74fbf43 100644
--- a/Mailman/Handlers/Cleanse.py
+++ b/Mailman/Handlers/Cleanse.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc.
+# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -22,7 +22,6 @@ def process(mlist, msg, msgdata):
# this after the information on the header is actually used, but before a
# permanent record of the header is saved.
del msg['approved']
- #
# We remove other headers from anonymous lists
if mlist.anonymous_list:
del msg['reply-to']
@@ -34,8 +33,5 @@ def process(mlist, msg, msgdata):
del msg['return-receipt-to']
del msg['disposition-notification-to']
del msg['x-confirm-reading-to']
- # pegasus mail uses this one... sigh
+ # Pegasus mail uses this one... sigh
del msg['x-pmrqc']
- # Mark the message as dirty so that its text will be forced to disk next
- # time it's queued.
- msgdata['_dirty'] = 1