File: junkfilter.match

package info (click to toggle)
junkfilter 20030115-4
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 300 kB
  • ctags: 16
  • sloc: makefile: 147; sh: 115
file content (30 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# junkfilter
# a junk email filter system for procmail 
# Copyright 1997-2002 Gregory Sutter <gsutter@zer0.org>
#
# $Id: junkfilter.match,v 1.8 2002/04/21 03:19:41 gsutter Exp $
#
# Please read the file "README" and the page
# http://junkfilter.zer0.org/ before using junkfilter.

# 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
}

JFMATCH

# EOF junkfilter.match