logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

regexp_table - format of Postfix regular expression tables

Author(S)

The regexp table lookup code was originally written by: LaMont Jones lamont@hp.com That code was based on the PCRE dictionary contributed by: Andrew McNamara andrewm@connect.com.au connect.com.au Pty. Ltd. Level 3, 213 Miller St North Sydney, NSW, Australia Adopted and adapted by: Wietse Venema IBM T.J. Watson Research P.O. Box 704 Yorktown Heights, NY 10598, USA Wietse Venema Google, Inc. 111 8th Avenue New York, NY 10011, USA REGEXP_TABLE(5)

Compatibility

With Postfix version 2.2 and earlier specify "postmap-fq" to query a table that contains case sensitive patterns. Patterns are case insensitive by default.

Description

The Postfix mail system uses optional tables for address rewriting, mail routing, or access control. These tables are usually in dbm or db format. Alternatively, lookup tables can be specified in POSIX regular expression form. In this case, each input is compared against a list of patterns. When a match is found, the corresponding result is returned and the search is terminated. To find out what types of lookup tables your Postfix system supports use the "postconf-m" command. To test lookup tables, use the "postmap-q" command as described in the SYNOPSIS above. Use "postmap-hmq- <file" for header_checks(5) patterns, and "postmap-bmq- <file" for body_checks(5) (Postfix 2.6 and later).

Example Body Filter Map

# First skip over base 64 encoded text to save CPU cycles. ~^[[:alnum:]+/]{60,}$~ OK # Put your own body patterns here.

Example Header Filter Map

# These were once common in junk mail. /^Subject: make money fast/ REJECT /^To: friend@public\.com/ REJECT

Example Smtpd Access Map

# Disallow sender-specified routing. This is a must if you relay mail # for other domains. /[%!@].*[%!@]/ 550 Sender-specified routing rejected # Postmaster is OK, that way they can talk to us about how to fix # their problem. /^postmaster@/ OK # Protect your outgoing majordomo exploders if !/^owner-/ /^(.*)-outgoing@(.*)$/ 550 Use ${1}@${2} instead endif

Inline Specification

The contents of a table may be specified in the table name (Postfix 3.7 and later). The basic syntax is: main.cf: parameter=..regexp:{{rule-1},{rule-2}..}.. master.cf: ..-o{parameter=..regexp:{{rule-1},{rule-2}..}..}.. Postfix recursively expands any $parametername instances in the above parameter value, ignores whitespace after '{' and before '}', and writes each rule as one text line to an in-memory file: in-memory file: rule-1 rule-2 .. Postfix parses the result as if it is a file in /etc/postfix.

Inline Specification Caveats

• Avoid using $parametername inside an inlined regexp: pattern. The pattern would have unexpected matches when there are metacharacters such as '.' in the $parametername expansion. To prevent unexpected matches, use a pcre: table, and specify \Q$parametername\E. • When an inlined rule must contain $, specify $$ to keep Postfix from trying to do $name expansion as it evaluates a parameter value. To check an inline configuration, use the "postconf-x" option as shown below: • When a main.cf "parametername=value" setting contains an inline regexp: table, use the command "postconf-xparametername". Verify that there are no "undefined parameter" warnings, and that the output has the syntax that one would use in a non-inlined Postfix regexp: file. • When a master.cf "-o{parametername=value}" override contains an inline regexp: table, use the command "postconf-Px'*/*/parametername' ". Verify that there are no "undefined parameter" warnings, and that the output has the syntax that one would use in a non-inlined Postfix regexp: file.

Name

regexp_table - format of Postfix regular expression tables

Readme Files

Use "postconfreadme_directory" or "postconfhtml_directory" to locate this information. DATABASE_README, Postfix lookup table overview

See Also

postmap(1), Postfix lookup table manager pcre_table(5), format of PCRE tables cidr_table(5), format of CIDR tables

Synopsis

postmap-q"string"regexp:/etc/postfix/filenamepostmap-q-regexp:/etc/postfix/filename<inputfile

Table Format

The general form of a Postfix regular expression table is: /pattern/flagsresult When pattern matches the input string, use the corresponding result value. !/pattern/flagsresult When pattern does not match the input string, use the corresponding result value. if/pattern/flagsendif If the input string matches /pattern/, then match that input string against the patterns between if and endif. The if..endif can nest. Note: do not prepend whitespace to patterns inside if..endif. This feature is available in Postfix 2.1 and later. if!/pattern/flagsendif If the input string does not match /pattern/, then match that input string against the patterns between if and endif. The if..endif can nest. Note: do not prepend whitespace to patterns inside if..endif. This feature is available in Postfix 2.1 and later. blank lines and comments Empty lines and whitespace-only lines are ignored, as are lines whose first non-whitespace character is a `#'. multi-line text A logical line starts with non-whitespace text. A line that starts with whitespace continues a logical line. Each pattern is a POSIX regular expression enclosed by a pair of delimiters. The regular expression syntax is documented in re_format(7) with 4.4BSD, in regex(5) with Solaris, and in regex(7) with Linux. Other systems may use other document names. The expression delimiter can be any non-alphanumerical character, except whitespace or characters that have special meaning (traditionally the forward slash is used). The regular expression can contain whitespace. By default, matching is case-insensitive, and newlines are not treated as special characters. The behavior is controlled by flags, which are toggled by appending one or more of the following characters after the pattern: i (default: on) Toggles the case sensitivity flag. By default, matching is case insensitive. m (default: off) Toggle the multi-line mode flag. When this flag is on, the ^ and $ metacharacters match immediately after and immediately before a newline character, respectively, in addition to matching at the start and end of the input string. x (default: on) Toggles the extended expression syntax flag. By default, support for extended expression syntax is enabled.

Text Substitution

Substitution of substrings (text that matches patterns inside "()") from the matched expression into the result string is requested with $1, $2, etc.; specify $$ to produce a $ character as output. The macros in the result string may need to be written as ${n} or $(n) if they aren't followed by whitespace. Note: since negated patterns (those preceded by !) return a result when the expression does not match, substitutions are not available for negated patterns.

See Also