------------------------------------------------------------
revno: 1102
committer: Mark Sapiro <[EMAIL PROTECTED]>
branch nick: 2.1
timestamp: Fri 2008-06-20 12:49:24 -0700
message:
Fixed CookHeaders.py which in some cases with new style prefixing
would insert an extra space between the prefix and the subject.
modified:
Mailman/Handlers/CookHeaders.py
NEWS
=== modified file 'Mailman/Handlers/CookHeaders.py'
--- a/Mailman/Handlers/CookHeaders.py 2008-03-06 20:34:12 +0000
+++ b/Mailman/Handlers/CookHeaders.py 2008-06-20 19:49:24 +0000
@@ -298,7 +298,10 @@
if old_style:
h = u' '.join([recolon, prefix, subject])
else:
- h = u' '.join([prefix, recolon, subject])
+ if recolon:
+ h = u' '.join([prefix, recolon, subject])
+ else:
+ h = u' '.join([prefix, subject])
h = h.encode('us-ascii')
h = uheader(mlist, h, 'Subject', continuation_ws=ws)
del msg['subject']
=== modified file 'NEWS'
--- a/NEWS 2008-06-15 19:39:31 +0000
+++ b/NEWS 2008-06-20 19:49:24 +0000
@@ -55,7 +55,7 @@
- Fixed unescaped '%' in templates/nl/newlist.txt (1719017).
- - Changed some non-ascii characters in templates/de/*.html to HTML
+ - Changed non-ascii characters in some templates/*/*.html files to HTML
entities.
- Fixed a problem in Decorate.py that could result in a multipart
@@ -63,6 +63,13 @@
- Improved recognition of some bounce messages.
+ - Rearranged calls to the list setBounceInfo() method in Bouncer.py
+ to accommodate MemberAdaptors that store bounce info outside the
+ list instance.
+
+ - Fixed CookHeaders.py which in some cases with new style prefixing
+ would insert an extra space between the prefix and the subject.
+
Miscellaneous
- Brad Knowles' mailman daily status report script updated to 0.0.18.
--
Stable, maintained release series
https://code.launchpad.net/~mailman-coders/mailman/2.1
You are receiving this branch notification because you are subscribed to it.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org