------------------------------------------------------------ revno: 1705 fixes bug: https://launchpad.net/bugs/1694384 committer: Mark Sapiro <m...@msapiro.net> branch nick: 2.1 timestamp: Tue 2017-05-30 13:41:30 -0700 message: Display only the list-owner address in the 'list run by' footer. modified: Mailman/HTMLFormatter.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/HTMLFormatter.py' --- Mailman/HTMLFormatter.py 2016-08-27 03:47:49 +0000 +++ Mailman/HTMLFormatter.py 2017-05-30 20:41:30 +0000 @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2016 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2017 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -40,8 +40,7 @@ class HTMLFormatter: def GetMailmanFooter(self): - ownertext = COMMASPACE.join([Utils.ObscureEmail(a, 1) - for a in self.owner]) + ownertext = Utils.ObscureEmail(self.GetOwnerEmail(), 1) # Remove the .Format() when htmlformat conversion is done. realname = self.real_name hostname = self.host_name === modified file 'NEWS' --- NEWS 2017-05-24 23:04:00 +0000 +++ NEWS 2017-05-30 20:41:30 +0000 @@ -44,6 +44,9 @@ Bug fixes and other patches + - The 'list run by' addresses in web page footers are now just the + list-owner address. (LP: #1694384) + - Changed member_verbosity_threshold from a >= test to a strictly > test to avoid the issue of moderating every post when the threshold = 1. (LP: #1693366)
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org