diff options
author | msapiro <> | 2006-01-15 21:01:35 +0000 |
---|---|---|
committer | msapiro <> | 2006-01-15 21:01:35 +0000 |
commit | 2a3818c340bbc53a12dd34d3e1e5a218af6458bd (patch) | |
tree | 597495e66d6cfcdd7ed6eba8e122f69a7f6f8a5a /Mailman/Defaults.py.in | |
parent | bcb2dda2f3d228b13b395c2ebdcfc370e94aed09 (diff) | |
download | mailman2-2a3818c340bbc53a12dd34d3e1e5a218af6458bd.tar.gz mailman2-2a3818c340bbc53a12dd34d3e1e5a218af6458bd.tar.xz mailman2-2a3818c340bbc53a12dd34d3e1e5a218af6458bd.zip |
Moving deletion of Domainkey-Signature: and DKIM-Signature: headers to a
new handler to be included in both GLOBAL_PIPELINE and OWNER_PIPELINE.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Defaults.py.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 54f65c95..e5dc7d82 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -1,6 +1,6 @@ # -*- python -*- -# Copyright (C) 1998-2005 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2006 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 @@ -476,6 +476,7 @@ GLOBAL_PIPELINE = [ 'CalcRecips', 'AvoidDuplicates', 'Cleanse', + 'CleanseDKIM', 'CookHeaders', # And now we send the message to the digest mbox file, and to the arch and # news queues. Runners will provide further processing of the message, @@ -494,6 +495,7 @@ GLOBAL_PIPELINE = [ OWNER_PIPELINE = [ 'SpamDetect', 'Replybot', + 'CleanseDKIM', 'OwnerRecips', 'ToOutgoing', ] |