diff options
-rw-r--r-- | Mailman/Cgi/options.py | 6 | ||||
-rw-r--r-- | NEWS | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Mailman/Cgi/options.py b/Mailman/Cgi/options.py index 6316af6e..9a2389a9 100644 --- a/Mailman/Cgi/options.py +++ b/Mailman/Cgi/options.py @@ -298,8 +298,14 @@ def main(): # the user is a member. If so, add it to the list. onlists = [] for gmlist in lists_of_member(mlist, user) + [mlist]: + extra = '' url = gmlist.GetOptionsURL(user) link = Link(url, gmlist.real_name) + if gmlist.getDeliveryStatus(user) <> MemberAdaptor.ENABLED: + extra += ', ' + _('nomail') + if user in gmlist.getDigestMemberKeys(): + extra += ', ' + _('digest') + link = HTMLFormatObject(link, 0) + extra onlists.append((gmlist.real_name, link)) onlists.sort() items = OrderedList(*[link for name, link in onlists]) @@ -12,6 +12,9 @@ Here is a history of user visible changes to Mailman. New Features + - The user options 'list my other subscriptions' page now indicates for + each list if the subscription is 'nomail' or 'digest'. Bug #793669. + - A new list poster password has been implemented. This password may only be used in Approved: or X-Approved: headers for pre-approving posts. Using this password for that purpose precludes compromise of a more |