aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Handlers
diff options
context:
space:
mode:
authorYasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>2017-05-13 22:27:14 +0900
committerYasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>2017-05-13 22:27:14 +0900
commite8628587b18f5c073e14144c2b89d4c2d9960691 (patch)
tree3b034f2cdebd86e2956615a793fb88164f99ddb9 /Mailman/Handlers
parent9ef3f2b8b404b2ee21be5708d6fcb6552121caea (diff)
parent48b5c517cec11db47c97a5ddacee6c5f8d15e4e4 (diff)
downloadmailman2-e8628587b18f5c073e14144c2b89d4c2d9960691.tar.gz
mailman2-e8628587b18f5c073e14144c2b89d4c2d9960691.tar.xz
mailman2-e8628587b18f5c073e14144c2b89d4c2d9960691.zip
Merge lp:mailman/2.1 up to rev 1702(no difference to lp:mailman/2.1, now)
Diffstat (limited to 'Mailman/Handlers')
-rwxr-xr-xMailman/Handlers/CookHeaders.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/Mailman/Handlers/CookHeaders.py b/Mailman/Handlers/CookHeaders.py
index 84d3032d..3e2806f0 100755
--- a/Mailman/Handlers/CookHeaders.py
+++ b/Mailman/Handlers/CookHeaders.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2017 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
@@ -423,9 +423,11 @@ def prefix_subject(mlist, msg, msgdata):
recolon = 'Re:'
else:
recolon = ''
+ # Strip leading and trailing whitespace from subject.
+ subject = subject.strip()
# At this point, subject may become null if someone post mail with
- # subject: [subject prefix]
- if subject.strip() == '':
+ # Subject: [subject prefix]
+ if subject == '':
# We want the i18n context to be the list's preferred_language. It
# could be the poster's.
otrans = i18n.get_translation()
@@ -462,10 +464,10 @@ def prefix_subject(mlist, msg, msgdata):
pass
# Get the header as a Header instance, with proper unicode conversion
# Because of rfc2047 encoding, spaces between encoded words can be
- # insignificant, so we need to append a space to prefix but only when
- # we have Re:.
+ # insignificant, so we need to append spaces to our encoded stuff.
+ prefix += ' '
if recolon:
- prefix += ' '
+ recolon += ' '
if old_style:
h = uheader(mlist, recolon, 'Subject', continuation_ws=ws)
h.append(prefix)