diff options
author | Mark Sapiro <msapiro@value.net> | 2010-09-03 12:30:34 -0700 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2010-09-03 12:30:34 -0700 |
commit | 39e51a6f72f1fb9cfb093e7ff3363dd11d405776 (patch) | |
tree | 8736813bae05a6966968ab47c61baee315481c6c /Mailman | |
parent | bd9840f2689dc6561cceb1588945742206cf7cbb (diff) | |
download | mailman2-39e51a6f72f1fb9cfb093e7ff3363dd11d405776.tar.gz mailman2-39e51a6f72f1fb9cfb093e7ff3363dd11d405776.tar.xz mailman2-39e51a6f72f1fb9cfb093e7ff3363dd11d405776.zip |
Fixed admindb interface to decode base64 and quoted-printable encoded
message body excerpts for display. Bug #629738.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Cgi/admindb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/admindb.py b/Mailman/Cgi/admindb.py index 586b406d..6e3d343f 100644 --- a/Mailman/Cgi/admindb.py +++ b/Mailman/Cgi/admindb.py @@ -599,7 +599,7 @@ def show_post_requests(mlist, id, info, total, count, form): 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: |