
Hello,
Has any one any ideas how to display a real name next to the email address in Subscriber List
Thanks
Wyn

Wyn wrote:
Has any one any ideas how to display a real name next to the email address in Subscriber List
I assume you mean the Subscriber List linked from the list's listinfo page, i.e. the roster at a URL like <http://www.example.com/mailman/roster/listname>.
There's no way to include real names on this list without modifying code, but see the FAQ at <http://wiki.list.org/x/aYA9> for other ways to get a list which may include real names.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan

Wyn schrieb:
Has any one any ideas how to display a real name next to the email address in Subscriber List
I found the required change to be small enough and use the following code: --- Mailman/HTMLFormatter.py.old Mon Mar 12 23:25:34 2007 +++ Mailman/HTMLFormatter.py Mon Mar 12 23:28:38 2007 @@ -94,6 +94,9 @@ showing = Utils.ObscureEmail(person, for_text=1) else: showing = person + realname = Utils.uncanonstr(self.getMemberName(person), lang) + if realname: + showing += " (%s)" % Utils.websafe(realname) got = Link(url, showing) if self.getDeliveryStatus(person) <> MemberAdaptor.ENABLED: got = Italic('(', got, ')') -- Martin Schütte

Wyn wrote:
Has any one any ideas how to display a real name next to the email address in Subscriber List
I assume you mean the Subscriber List linked from the list's listinfo page, i.e. the roster at a URL like <http://www.example.com/mailman/roster/listname>.
There's no way to include real names on this list without modifying code, but see the FAQ at <http://wiki.list.org/x/aYA9> for other ways to get a list which may include real names.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan

Wyn schrieb:
Has any one any ideas how to display a real name next to the email address in Subscriber List
I found the required change to be small enough and use the following code: --- Mailman/HTMLFormatter.py.old Mon Mar 12 23:25:34 2007 +++ Mailman/HTMLFormatter.py Mon Mar 12 23:28:38 2007 @@ -94,6 +94,9 @@ showing = Utils.ObscureEmail(person, for_text=1) else: showing = person + realname = Utils.uncanonstr(self.getMemberName(person), lang) + if realname: + showing += " (%s)" % Utils.websafe(realname) got = Link(url, showing) if self.getDeliveryStatus(person) <> MemberAdaptor.ENABLED: got = Italic('(', got, ')') -- Martin Schütte
participants (3)
-
Mark Sapiro
-
Martin Schütte
-
Wyn