hi how do you mask email addresses in mailman archives as done for this list?
Sometime on Wed, Feb 01, 2006 at 11:22:30AM +0530, Kenneth Gonsalves said:
hi how do you mask email addresses in mailman archives as done for this list?
You'll need to edit mailman sources.
1) Put this in /etc/mailman/mm_cfg.py ARCHIVER_OBSCURES_EMAILADDRS = 1 This changes ``user@domain'' to ``user at domain'' in archive body and headers.
2) In ``/usr/lib/mailman/Archiver/HyperArch.py'', replace this: self.email = re.sub('@', _(' at '), self.email)
with: MASK_DOMAIN = 'antispam.org' emailaddr = self.email email_tmp = emailaddr.split('@') self.email = email_tmp[0] + '@' + MASK_DOMAIN
Hopefully this should work, if not then i'll upload the respective files on db.
Anurag
On 01/02/06 12:10 +0530, Anurag wrote:
Sometime on Wed, Feb 01, 2006 at 11:22:30AM +0530, Kenneth Gonsalves said:
hi how do you mask email addresses in mailman archives as done for this list?
You'll need to edit mailman sources.
- Put this in /etc/mailman/mm_cfg.py
ARCHIVER_OBSCURES_EMAILADDRS = 1 This changes ``user@domain'' to ``user at domain'' in archive body and headers.
- In ``/usr/lib/mailman/Archiver/HyperArch.py'', replace this:
self.email = re.sub('@', _(' at '), self.email)
with: MASK_DOMAIN = 'antispam.org'
NOTICE: Access to .ORG WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the Public Interest Registry registry database. The data in this record is provided by Public Interest Registry for informational purposes only, and Public Interest Registry does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to: (a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator or any ICANN-Accredited Registrar, except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Public Interest Registry reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.
Domain ID:D85965966-LROR Domain Name:ANTISPAM.ORG Created On:25-Apr-2002 18:13:58 UTC Last Updated On:07-Nov-2005 14:03:04 UTC Expiration Date:25-Apr-2008 18:13:58 UTC Sponsoring Registrar:Advanced Internet Technologies, Inc. (AIT) (R232-LROR) Status:OK Registrant ID:AITorgORG4174 Registrant Name:Domain . Admin Registrant Organization:TechGenix Ltd. Registrant Street1:Omar Hodge Building, Wickhams Cay I Registrant Street2:P.O. Box 362 Registrant Street3: Registrant City:Road Town Registrant State/Province:NA Registrant Postal Code:Tortola Registrant Country:VG Registrant Phone:+1.17029207680 Registrant Phone Ext.: Registrant FAX: Registrant FAX Ext.: Registrant Email:domains@techgenix.com Admin ID:AITorgADM4174 Admin Name:Domain . Admin Admin Organization:TechGenix Ltd. Admin Street1:Omar Hodge Building, Wickhams Cay I Admin Street2:P.O. Box 362 Admin Street3: Admin City:Road Town Admin State/Province:NA Admin Postal Code:Tortola Admin Country:VG Admin Phone:+1.17029207680 Admin Phone Ext.: Admin FAX: Admin FAX Ext.: Admin Email:domains@techgenix.com Tech ID:AITorgTEC4174 Tech Name:Domain . Admin Tech Organization:TechGenix Ltd. Tech Street1:Omar Hodge Building, Wickhams Cay I Tech Street2:P.O. Box 362 Tech Street3: Tech City:Road Town Tech State/Province:NA Tech Postal Code:Tortola Tech Country:VG Tech Phone:+1.17029207680 Tech Phone Ext.: Tech FAX: Tech FAX Ext.: Tech Email:domains@techgenix.com Name Server:DNS1.NETTICA.COM Name Server:DNS2.NETTICA.COM Name Server:DNS3.NETTICA.COM Name Server:DNS4.NETTICA.COM Name Server:DNS5.NETTICA.COM Name Server: Name Server: Name Server: Name Server: Name Server: Name Server: Name Server: Name Server:
Definitely not you.
Any script which tries to scrape addresses and spam them will attack an innocent third party.
Please do not use valid Internet domains for such stuff. example.com (and .net and .org) are your friends.
Devdas Bhagat
Sometime on Wed, Feb 01, 2006 at 10:50:52PM +0530, Devdas Bhagat said:
Any script which tries to scrape addresses and spam them will attack an innocent third party.
Please do not use valid Internet domains for such stuff. example.com (and .net and .org) are your friends.
We can always use [EMAIL-PROTECTED] as a mask.
Anurag