------------------------------------------------------------
revno: 1129
committer: Mark Sapiro <[email protected]>
branch nick: 2.2
timestamp: Fri 2010-09-03 12:32:15 -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.2
https://code.launchpad.net/~mailman-coders/mailman/2.2
Your team Mailman Checkins is subscribed to branch lp:mailman/2.2.
To unsubscribe from this branch go to
https://code.launchpad.net/~mailman-coders/mailman/2.2/+edit-subscription
=== modified file 'Mailman/Cgi/admindb.py'
--- Mailman/Cgi/admindb.py 2010-06-25 22:38:10 +0000
+++ Mailman/Cgi/admindb.py 2010-09-03 19:32:15 +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:06:46 +0000
+++ NEWS 2010-09-03 19:32:15 +0000
@@ -114,6 +114,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