diff options
author | Mark Sapiro <mark@msapiro.net> | 2017-05-30 13:41:30 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2017-05-30 13:41:30 -0700 |
commit | f0950842497d8c8de6422f8fa94b2df398e9932a (patch) | |
tree | 836a5c0c05a6b495908b9ef458c0e5756beb81c9 | |
parent | 73fd31d3a6a9083bc7a3e782575ef581a0596af6 (diff) | |
download | mailman2-f0950842497d8c8de6422f8fa94b2df398e9932a.tar.gz mailman2-f0950842497d8c8de6422f8fa94b2df398e9932a.tar.xz mailman2-f0950842497d8c8de6422f8fa94b2df398e9932a.zip |
Display only the list-owner address in the 'list run by' footer.
-rw-r--r-- | Mailman/HTMLFormatter.py | 5 | ||||
-rw-r--r-- | NEWS | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py index 5fcce75b..2a3e08db 100644 --- a/Mailman/HTMLFormatter.py +++ b/Mailman/HTMLFormatter.py @@ -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 @@ COMMASPACE = ', ' 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 @@ -44,6 +44,9 @@ Here is a history of user visible changes to Mailman. 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) |