From 2c627e94fa3f6326aa05dec62d382bbc1445fd39 Mon Sep 17 00:00:00 2001 From: msapiro Date: Tue, 23 May 2006 17:31:16 +0000 Subject: Added removal of Authentication-Results: header as it too is no longer valid. --- Mailman/Handlers/CleanseDKIM.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Mailman/Handlers/CleanseDKIM.py b/Mailman/Handlers/CleanseDKIM.py index 850e3668a..ec7caa134 100644 --- a/Mailman/Handlers/CleanseDKIM.py +++ b/Mailman/Handlers/CleanseDKIM.py @@ -30,4 +30,5 @@ originating at the Mailman server for the outgoing message. def process(mlist, msg, msgdata): del msg['domainkey-signature'] del msg['dkim-signature'] + del msg['authentication-results'] -- cgit v1.3.1