diff options
| author | bwarsaw | 2001-07-10 05:45:04 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-07-10 05:45:04 +0000 |
| commit | 487175fccdbe5f5f137eca7e594ade32c5fabdbe (patch) | |
| tree | b8fc90f05af749ca83fcd804daabbe5f4a403697 /Mailman/Handlers/Cleanse.py | |
| parent | 48ed7a4a9ca43b274264bb44798511eedc1eb164 (diff) | |
| download | mailman-487175fccdbe5f5f137eca7e594ade32c5fabdbe.tar.gz mailman-487175fccdbe5f5f137eca7e594ade32c5fabdbe.tar.zst mailman-487175fccdbe5f5f137eca7e594ade32c5fabdbe.zip | |
Diffstat (limited to 'Mailman/Handlers/Cleanse.py')
| -rw-r--r-- | Mailman/Handlers/Cleanse.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Handlers/Cleanse.py b/Mailman/Handlers/Cleanse.py index 5d74fbf43..f888f894f 100644 --- a/Mailman/Handlers/Cleanse.py +++ b/Mailman/Handlers/Cleanse.py @@ -22,13 +22,14 @@ 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'] + # Also remove this header since it can contain a password + del msg['urgent'] # We remove other headers from anonymous lists if mlist.anonymous_list: del msg['reply-to'] del msg['sender'] msg['From'] = mlist.GetAdminEmail() msg['Reply-To'] = mlist.GetListEmail() - # # Some headers can be used to fish for membership del msg['return-receipt-to'] del msg['disposition-notification-to'] |
