diff options
author | Mark Sapiro <mark@msapiro.net> | 2010-02-22 17:19:42 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2010-02-22 17:19:42 -0800 |
commit | 3eaeb16bbe2eeb039bd37a190f8ddf5d36533c57 (patch) | |
tree | bdad29e811aed1ced7219226dd74739135261894 /Mailman | |
parent | b26efce44bab49a2e352ef47f55c79aef0ca235e (diff) | |
download | mailman2-3eaeb16bbe2eeb039bd37a190f8ddf5d36533c57.tar.gz mailman2-3eaeb16bbe2eeb039bd37a190f8ddf5d36533c57.tar.xz mailman2-3eaeb16bbe2eeb039bd37a190f8ddf5d36533c57.zip |
Added the List-Post header to the default list of headers retained in
messages in the MIME digest. Bug #526143.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Defaults.py.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index b1c0ebe9..4aaee1d1 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -1,6 +1,6 @@ # -*- python -*- -# Copyright (C) 1998-2008 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2010 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 @@ -1088,7 +1088,7 @@ MIME_DIGEST_KEEP_HEADERS = [ 'Date', 'From', 'To', 'Cc', 'Subject', 'Message-ID', 'Keywords', # I believe we should also keep these headers though. 'In-Reply-To', 'References', 'Content-Type', 'MIME-Version', - 'Content-Transfer-Encoding', 'Precedence', 'Reply-To', + 'Content-Transfer-Encoding', 'Precedence', 'Reply-To', 'List-Post', # Mailman 2.0 adds these headers 'Message', ] |