d7d544aee7
check following for list of changes: ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-1.1.11.RELEASE_NOTES
27 lines
1.2 KiB
CFEngine3
27 lines
1.2 KiB
CFEngine3
# $NetBSD: sample-regexp-body.cf,v 1.1.1.2 2002/06/08 22:36:16 itojun Exp $
|
|
#
|
|
# Sample regexp message body filter lookup "table". See regexp_table(5)
|
|
# for a description of the syntax.
|
|
#
|
|
# Mail body lines are filtered one line at a time. In particular, multi-line
|
|
# MIME headers in the message body are filtered one text line at a time.
|
|
#
|
|
# The general format of a table entry is PATTERN RESULT.
|
|
#
|
|
# The pattern format is /regexp/flags or /regexp/flags!/regexp/flags
|
|
# where regexp is a regular expression as found in regexp(5), and flags are
|
|
# i: toggle ignore case (REG_ICASE - default is to ignore case)
|
|
# x: toggle extended expression (REG_EXTENDED - default is extended)
|
|
# m: toggle multiline mode (REG_NEWLINE - default is non-multiline mode)
|
|
#
|
|
# In order for a line to match, the first regexp must match, and the
|
|
# second (if present) must not match. The first matching line wins,
|
|
# terminating processing of the ruleset.
|
|
#
|
|
# The result is one of the following:
|
|
# REJECT The entire message is rejected.
|
|
# REJECT text.... The text is sent to the originator.
|
|
# IGNORE The header line is silently discarded.
|
|
# WARN The header is logged (not rejected) with a warning.
|
|
# WARN text.... As above, and the text is logged, too.
|