[Pkg-mailman-hackers] Pkg-mailman commit - rev 713 - trunk/debian/patches
Thijs Kinkhorst
thijs at alioth.debian.org
Thu Mar 29 10:53:14 UTC 2012
Author: thijs
Date: 2012-03-29 10:53:14 +0000 (Thu, 29 Mar 2012)
New Revision: 713
Removed:
trunk/debian/patches/74_admin_non-ascii_emails.patch
Modified:
trunk/debian/patches/series
Log:
obsolete; see explanation of upstream in
https://bugs.launchpad.net/mailman/+bug/558193/comments/2
Deleted: trunk/debian/patches/74_admin_non-ascii_emails.patch
===================================================================
--- trunk/debian/patches/74_admin_non-ascii_emails.patch 2012-03-28 07:57:27 UTC (rev 712)
+++ trunk/debian/patches/74_admin_non-ascii_emails.patch 2012-03-29 10:53:14 UTC (rev 713)
@@ -1,23 +0,0 @@
-Author: Lionel Elie Mamane <lionel at mamane.lu>
-Description: Don't assume emails are ASCII (Closes: #315358)
-Bug-Debian: #315358
-Forwarded: no
-
-Index: b/Mailman/Cgi/admin.py
-===================================================================
---- a/Mailman/Cgi/admin.py 2010-05-24 17:50:44.000000000 +0200
-+++ b/Mailman/Cgi/admin.py 2010-05-24 17:51:14.000000000 +0200
-@@ -867,7 +867,12 @@
- chunksz = mlist.admin_member_chunksize
- # The email addresses had /better/ be ASCII, but might be encoded in the
- # database as Unicodes.
-- all = [_m.encode() for _m in mlist.getMembers()]
-+ all = []
-+ for _m in mlist.getMembers():
-+ try:
-+ all.append( _m.encode() )
-+ except:
-+ all.append( _m )
- all.sort(lambda x, y: cmp(x.lower(), y.lower()))
- # See if the query has a regular expression
- regexp = cgidata.getvalue('findmember', '').strip()
Modified: trunk/debian/patches/series
===================================================================
--- trunk/debian/patches/series 2012-03-28 07:57:27 UTC (rev 712)
+++ trunk/debian/patches/series 2012-03-29 10:53:14 UTC (rev 713)
@@ -14,7 +14,6 @@
66_donot_let_cache_html_pages.patch
70_invalid_utf8_dos.patch
71_date_overflows.patch
-74_admin_non-ascii_emails.patch
79_archiver_slash.patch
80_CVE-2011-0707_confirm_xss.patch
99_js_templates.patch
More information about the Pkg-mailman-hackers
mailing list