aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Defaults.py.in
diff options
context:
space:
mode:
authorDavid Planella <david.planella@gmail.com>2009-01-29 00:22:52 +0100
committerDavid Planella <david.planella@gmail.com>2009-01-29 00:22:52 +0100
commit518b3843c0117f24b1b277a724169fb616604e4d (patch)
tree01ab5cbe392ff3a8e851dae1be4eb3a8cf8ed439 /Mailman/Defaults.py.in
parent42fcf522d7818e9e1ee922d1a68824b0f6dcc83d (diff)
parentc0da6af58657b1fe5730d3dea0e78bc17dac490a (diff)
downloadmailman2-518b3843c0117f24b1b277a724169fb616604e4d.tar.gz
mailman2-518b3843c0117f24b1b277a724169fb616604e4d.tar.xz
mailman2-518b3843c0117f24b1b277a724169fb616604e4d.zip
Merged from upstream
Diffstat (limited to 'Mailman/Defaults.py.in')
-rw-r--r--Mailman/Defaults.py.in10
1 files changed, 7 insertions, 3 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index fcf474a5..a10e2976 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -1090,10 +1090,14 @@ MIME_DIGEST_KEEP_HEADERS = [
'Message',
]
+# The order in this list controls the order of the RFC 1153 digest headers.
+# Also, any headers in this list will be kept in the MIME digest even if they
+# don't appear in the MIME list above. Finally, headers appearing in both
+# lists must be casewise the same or duplication can result in the digest.
PLAIN_DIGEST_KEEP_HEADERS = [
- 'Message', 'Date', 'From',
- 'Subject', 'To', 'Cc',
- 'Message-ID', 'Keywords',
+ 'Message',
+ # RFC 1153 headers in order
+ 'Date', 'From', 'To', 'Cc', 'Subject', 'Message-ID', 'Keywords',
'Content-Type',
]