------------------------------------------------------------
revno: 1259
committer: Mark Sapiro <[email protected]>
branch nick: 2.1
timestamp: Fri 2010-09-03 12:30:34 -0700
message:
  Fixed admindb interface to decode base64 and quoted-printable encoded
  message body excerpts for display.  Bug #629738.
modified:
  Mailman/Cgi/admindb.py
  NEWS


--
lp:mailman/2.1
https://code.launchpad.net/~mailman-coders/mailman/2.1

Your team Mailman Checkins is subscribed to branch lp:mailman/2.1.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'Mailman/Cgi/admindb.py'
--- Mailman/Cgi/admindb.py	2010-06-25 22:39:24 +0000
+++ Mailman/Cgi/admindb.py	2010-09-03 19:30:34 +0000
@@ -599,7 +599,7 @@
     chars = 0
     # A negative value means, include the entire message regardless of size
     limit = mm_cfg.ADMINDB_PAGE_TEXT_LIMIT
-    for line in email.Iterators.body_line_iterator(msg):
+    for line in email.Iterators.body_line_iterator(msg, decode=True):
         lines.append(line)
         chars += len(line)
         if chars > limit > 0:

=== modified file 'NEWS'
--- NEWS	2010-09-01 03:05:32 +0000
+++ NEWS	2010-09-03 19:30:34 +0000
@@ -44,6 +44,9 @@
 
   Bug Fixes and other patches
 
+    - Fixed admindb interface to decode base64 and quoted-printable encoded
+      message body excerpts for display.  Bug #629738.
+
     - Fixed web CGI tracebacks to properly report sys.path.  Bug #615114.
 
     - Changed the member options login page unsubscribe request to include the

_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to