hide admin email from listinfo page
On a mailing lists public listinfo page I read three lines in the footer:
<listname> list run by <email>
<listname> administrative interface (requires authorization)
Overview of all <domainname> mailing lists
My question is about the email address. is there any way to prevent this admin email address from showing up on this page? The email is sent to <listname>-owner, but the actual text shows the real admin's email address.
Ton Oosterhoff wrote:
On a mailing lists public listinfo page I read three lines in the footer:
<listname> list run by <email>
<listname> administrative interface (requires authorization)
Overview of all <domainname> mailing lists
My question is about the email address. is there any way to prevent this admin email address from showing up on this page? The email is sent to <listname>-owner, but the actual text shows the real admin's email address.
Without patching source code, there are a couple of options. You can go to the admin "Edit the public HTML pages and text files" link and edit the "General list information page" and remove the tag <MM-Mailman-Footer> from the end of the body. This will remove the entire footer. You can then add whatever HTML you like in its place.
The other option is to put addresses only in moderator, not in owner. Then no address will be displayed in the "run by" line. The down side of this is that moderators do not receive all list owner notifications. They do receive mail to listname-owner and most notices, but they do not receive unrecognized bounce notices. I don't *think* there are any other owner messages not sent to moderators, but I'm not certain.
Don't be tempted to put the -owner address in owner. This will cause a mail loop.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
On Apr 6, 2010, at 5:41 AM, Ton Oosterhoff wrote:
On a mailing lists public listinfo page I read three lines in the footer:
<listname> list run by <email> <listname> administrative interface (requires authorization) Overview of all <domainname> mailing lists
My question is about the email address. is there any way to prevent this admin email address from showing up on this page? The email is sent to <listname>-owner, but the actual text shows the real admin's email address.
I've done this as our listinfo pages were getting mined for the owner addresses and then, working on the supposition that the owner is also a subscribed address, spammers would spoof email to the lists using those addresses with some measure of success.
If you patch HTMLFormatter.py with:
class HTMLFormatter: def GetMailmanFooter(self):
ownertext = COMMASPACE.join([Utils.ObscureEmail(a, 1)
for a in self.owner])
ownertext = Utils.ObscureEmail(self.GetOwnerEmail())
You'll see listname-owner--at--domain instead of the real owners' address which you can see an example of at http://mail.opensolaris.org/mailman/listinfo/advocacy-discuss
e.
participants (3)
-
Elaine Ashton
-
Mark Sapiro
-
Ton Oosterhoff