[Mailman-Users] Adding a new filter

Ian Clarke ian at octayne.com
Wed Jan 3 02:02:49 CET 2001


I have created a new filter in the style of bowa-strip and am unsure of
how to use it for a mailing list.

Could someone let me know?

For your interest, I have copied the filter below - it is designed to
spamproof email addresses in emails forwarded to Usenet.

Ian.

--
# import gnu_public_license

import sys, __main__, string

input = sys.stdin.readlines()

for x in range(len(input)):
  if (string.find(input[x],"From") != -1):
    input[x] = string.replace(input[x], "@", "@nospam.")

# __main__.mailman_text = string.join(input,'')
for x in input:
  print x


-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 240 bytes
Desc: not available
Url : http://mail.python.org/pipermail/mailman-users/attachments/20010102/38fc2a15/attachment.pgp 


More information about the Mailman-Users mailing list