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