diff options
author | Mark Sapiro <mark@msapiro.net> | 2016-05-13 09:27:12 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2016-05-13 09:27:12 -0700 |
commit | 631b834dd33fd65bf3c6e901980fb96c13a8d153 (patch) | |
tree | 94e76ed9b9e6809c811b96c0b78025a0ffc5f4bc /Mailman/Handlers/WrapMessage.py | |
parent | d2145608089777cd27175763cf9f71ca2a3159f5 (diff) | |
download | mailman2-631b834dd33fd65bf3c6e901980fb96c13a8d153.tar.gz mailman2-631b834dd33fd65bf3c6e901980fb96c13a8d153.tar.xz mailman2-631b834dd33fd65bf3c6e901980fb96c13a8d153.zip |
Keep the date header in wrapped messages.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Handlers/WrapMessage.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Handlers/WrapMessage.py b/Mailman/Handlers/WrapMessage.py index 83f521fb..2bb540d6 100644 --- a/Mailman/Handlers/WrapMessage.py +++ b/Mailman/Handlers/WrapMessage.py @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 by the Free Software Foundation, Inc. +# Copyright (C) 2013-2016 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 @@ -34,6 +34,7 @@ KEEPERS = ('to', 'in-reply-to', 'references', 'x-mailman-approved-at', + 'date', ) |