# junkfilter # a junk e-mail filter system for procmail # Copyright 1997-98, Gregory Sutter # # $Id: junkfilter.match,v 1.2 1998/08/31 11:14:47 gsutter Exp $ # # Please read the file "junkfilter.readme" and the page # http://www.pobox.com/~gsutter/junkfilter/ before using # junkfilter. junkfilter is copyright 1997-98 Gregory # Sutter and is licensed under the terms of the GNU # General Public License, version 2. See the file # junkfilter.readme for details. # this is junkfilter.match; it gets executed whenever a recipe matches. # strip off any newlines at the end of a match :0 * JFMATCH ?? ^^\/.+ { JFMATCH=$MATCH } :0 * JFEXP ?? . { JFEXP=${JFEXP}${JFNL}" "${JFMATCH} } :0E { JFEXP=$JFMATCH } # EOF junkfilter.match