1# junkfilter
2# a junk email filter system for procmail
3# Copyright 1997-2002 Gregory Sutter <gsutter@zer0.org>
4#
5# $Id: junkfilter.match,v 1.8 2002/04/21 03:19:41 gsutter Exp $
6#
7# Please read the file "README" and the page
8# http://junkfilter.zer0.org/ before using junkfilter.
9
10# this is junkfilter.match; it gets executed whenever a recipe matches.
11
12# strip off any newlines at the end of a match
13:0
14* JFMATCH ?? ^^\/.+
15{ JFMATCH=$MATCH }
16
17:0
18* JFEXP ?? .
19{
20	JFEXP=${JFEXP}${JFNL}"           "${JFMATCH}
21}
22
23:0E
24{
25	JFEXP=$JFMATCH
26}
27
28JFMATCH
29
30# EOF junkfilter.match
31