From: Tobia Conforto To: license-discuss@opensource.org Date: Mon, 3 Sep 2007 01:30:57 +0200 Subject: [OT] Noise filter, was: For Approval: GPLv3 Rick Moen wrote: > This mailing list attracts a certain number of licensing trolls > thrilled by the apparent opportunity to waste busy people's time. > But we have killfiles. "a certain number" being two? :-) I know it's OT, but this otherwise very interesting list made me pick up man procmailrc again (daunting but rewarding task!) and I came up with this noise filter, that you and others might find useful: ---------------------------------------------------------------------- # noise filter MY_ADDR="my.own@email.addresses|separated@by.bars" TROLL_ADDR="this.is@a.troll|with@two.addresses|this.is@another.troll" TROLL_NAMES="John Troll|Kathy McTroll" :0 # for each email not directly addressed to me *$ !^(To|Cc):.*\<($MY_ADDR)\> { :0 # if the mail is from a troll -> byte recycler *$ ^From:.*\<($TROLL_ADDR)\> /dev/null :0 B # if the mail is a direct reply to a troll -> same *$ ^^(.*\<)?($TROLL_NAMES)\> /dev/null } ---------------------------------------------------------------------- It trashes troll mails *and* their first-level replies, unless the mail is addressed to you directly (To: or Cc:) Tobia