diff --git a/doc/arch.html b/doc/arch.html new file mode 100644 index 0000000..279c19c --- /dev/null +++ b/doc/arch.html @@ -0,0 +1,27 @@ + + + +postfwd - basic architecture + + + + + + + + +

postfwd workflow


+ +

+

+

+ +
http://www.postfwd.org/ + 2007 - 2009 by Jan Peter Kessler + info (AT) postfwd (DOT) org +
+
+

+ + + diff --git a/doc/hapolicy.html b/doc/hapolicy.html new file mode 100644 index 0000000..2cc13fa --- /dev/null +++ b/doc/hapolicy.html @@ -0,0 +1,151 @@ + + + +hapolicy - policy delegation high availability script + + + + + +

+ + + + + +
+

+

+

NAME

+

hapolicy - policy delegation high availability script

+

+

+
+

SYNOPSIS

+

hapolicy [OPTIONS] --service=SERVICE1 [--service=SERVICE2 ...]

+
+        Services:
+        -s, --service <name>=<address>:<port>[:<prio>:<weight>:<timeout>]
+
+        Options:
+        -d, --default <action>  returns <action> if no service was available (default: 'dunno')
+        -l, --logging           log requests
+        -v, --verbose           increase logging verbosity
+        -L, --stdout            log to stdout, for debugging, do NOT use with postfix
+

+

+
+

DESCRIPTION

+

+

+

INTRODUCTION

+

hapolicy enables high availability, weighted loadbalancing and a fallback action for postfix policy delegation services. Invoked via postfix spawn it acts as a wrapper that queries +other policy servers via tcp connection. The order of the service queries can be influenced by assigning a specific priority and weight to each service. A service is considered 'failing', +if the connection is refused or the specified service timeout is reached. If all of the configured policy services were failing, hapolicy returns a default action (e.g. dunno) to postfix.

+

With version 1.00 hapolicy has less than 200 lines of perl code using only standard perl modules. It does not require any disk access nor configuration files and runs under an unpriviledged +user account. This should allow fast and reliable operation.

+

+

+

CONFIGURATION

+

A service has the following attributes

+
+    "servicename"           => {
+               ip              => '127.0.0.1',         # ip address
+               port            => '10040',             # tcp port
+               prio            => '10',                # optional, lower wins
+               weight          => '1',                 # optional, for items with same prio (weighted round-robin), higher is better
+               timeout         => '30',                # optional, query timeout in seconds
+    },
+

You may define multiple services at the command line. Which means that

+
+        hapolicy -s "grey1=10.0.0.1:10031:10" -s "grey2=10.0.0.2:10031:20"
+

will always try first service grey1 at ip 10.0.0.1 port 10031 and if that service is not available or +does not answer within the default of 30 seconds the next service grey2 at ip 10.0.0.2 port 10031 will +be queried.

+

If you want to load balance connections you may define

+
+        hapolicy -s "polw1=10.0.0.1:12525:10:2" -s "polw2=10.0.0.2:12525:10:1"
+

which queries service polw1 at ip 10.0.0.1 twice as much as service polw2 at ip 10.0.0.2. Note that this +setup also ensures high availability for both services. If polw1 is not available or does not answer +within the default of 30 seconds polw2 will be queried and vice versa. There is no reason to define a service twice.

+

+

+

INTEGRATION

+

Enter the following at the bottom of your postfix master.cf (usually located at /etc/postfix):

+
+        # service description, note the leading blanks at the second line
+        127.0.0.1:10060 inet    n       n       n       -       0       spawn
+          user=nobody argv=/usr/local/bin/hapolicy -l -s GREY1=10.0.0.1:10031:10 -s GREY2=10.0.0.2:10031:10
+

save the file and open postfix main.cf. Modify it as follows:

+
+        127.0.0.1:10060_time_limit   = 3600
+
+        smtpd_recipient_restrictions =
+            permit_mynetworks,
+            ... other authed permits ...
+            reject_unauth_destination,
+            ... other restrictions ...
+            check_policy_service inet:127.0.0.1:10060   # <- hapolicy query
+

Now issue 'postfix reload' at the command line. Of course you can have more enhanced setups +using postfix restriction classes. Please see LINKS for further options.

+

+

+
+

LINKS

+

[1] Postfix SMTP Access Policy Delegation +http://www.postfix.org/SMTPD_POLICY_README.html

+

[2] Postfix Per-Client/User/etc. Access Control +http://www.postfix.org/RESTRICTION_CLASS_README.html

+

+

+
+

LICENSE

+

hapolicy is free software and released under BSD license, which basically means +that you can do what you want as long as you keep the copyright notice:

+

Copyright (c) 2008, Jan Peter Kessler +All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met:

+
+ * Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in
+   the documentation and/or other materials provided with the
+   distribution.
+ * Neither the name of the authors nor the names of his contributors
+   may be used to endorse or promote products derived from this
+   software without specific prior written permission.
+

THIS SOFTWARE IS PROVIDED BY ME ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE.

+

+

+
+

AUTHOR

+

Jan Peter Kessler <info (AT) postfwd (DOT) org>. Let me know, if you have any suggestions.

+ + + + diff --git a/doc/hapolicy.txt b/doc/hapolicy.txt new file mode 100644 index 0000000..335d19a --- /dev/null +++ b/doc/hapolicy.txt @@ -0,0 +1,127 @@ +NAME + hapolicy - policy delegation high availability script + +SYNOPSIS + hapolicy [OPTIONS] --service=SERVICE1 [--service=SERVICE2 ...] + + Services: + -s, --service =
:[:::] + + Options: + -d, --default returns if no service was available (default: 'dunno') + -l, --logging log requests + -v, --verbose increase logging verbosity + -L, --stdout log to stdout, for debugging, do NOT use with postfix + +DESCRIPTION + INTRODUCTION + hapolicy enables high availability, weighted loadbalancing and a + fallback action for postfix policy delegation services. Invoked via + postfix spawn it acts as a wrapper that queries other policy servers via + tcp connection. The order of the service queries can be influenced by + assigning a specific priority and weight to each service. A service is + considered 'failing', if the connection is refused or the specified + service timeout is reached. If all of the configured policy services + were failing, hapolicy returns a default action (e.g. dunno) to postfix. + + With version 1.00 hapolicy has less than 200 lines of perl code using + only standard perl modules. It does not require any disk access nor + configuration files and runs under an unpriviledged user account. This + should allow fast and reliable operation. + + CONFIGURATION + A service has the following attributes + + "servicename" => { + ip => '127.0.0.1', # ip address + port => '10040', # tcp port + prio => '10', # optional, lower wins + weight => '1', # optional, for items with same prio (weighted round-robin), higher is better + timeout => '30', # optional, query timeout in seconds + }, + + You may define multiple services at the command line. Which means that + + hapolicy -s "grey1=10.0.0.1:10031:10" -s "grey2=10.0.0.2:10031:20" + + will always try first service *grey1* at ip 10.0.0.1 port 10031 and if + that service is not available or does not answer within the default of + 30 seconds the next service *grey2* at ip 10.0.0.2 port 10031 will be + queried. + + If you want to load balance connections you may define + + hapolicy -s "polw1=10.0.0.1:12525:10:2" -s "polw2=10.0.0.2:12525:10:1" + + which queries service *polw1* at ip 10.0.0.1 twice as much as service + *polw2* at ip 10.0.0.2. Note that this setup also ensures high + availability for both services. If *polw1* is not available or does not + answer within the default of 30 seconds *polw2* will be queried and vice + versa. There is no reason to define a service twice. + + INTEGRATION + Enter the following at the bottom of your postfix master.cf (usually + located at /etc/postfix): + + # service description, note the leading blanks at the second line + 127.0.0.1:10060 inet n n n - 0 spawn + user=nobody argv=/usr/local/bin/hapolicy -l -s GREY1=10.0.0.1:10031:10 -s GREY2=10.0.0.2:10031:10 + + save the file and open postfix main.cf. Modify it as follows: + + 127.0.0.1:10060_time_limit = 3600 + + smtpd_recipient_restrictions = + permit_mynetworks, + ... other authed permits ... + reject_unauth_destination, + ... other restrictions ... + check_policy_service inet:127.0.0.1:10060 # <- hapolicy query + + Now issue 'postfix reload' at the command line. Of course you can have + more enhanced setups using postfix restriction classes. Please see + "LINKS" for further options. + +LINKS + [1] Postfix SMTP Access Policy Delegation + + + [2] Postfix Per-Client/User/etc. Access Control + + +LICENSE + hapolicy is free software and released under BSD license, which + basically means that you can do what you want as long as you keep the + copyright notice: + + Copyright (c) 2008, Jan Peter Kessler All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + * Neither the name of the authors nor the names of his contributors + may be used to endorse or promote products derived from this + software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY ME ``AS IS'' AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN + NO EVENT SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +AUTHOR + Jan Peter Kessler . Let me know, if you + have any suggestions. + diff --git a/doc/postfwd-ARCH.png b/doc/postfwd-ARCH.png new file mode 100644 index 0000000..ecba4ba Binary files /dev/null and b/doc/postfwd-ARCH.png differ diff --git a/doc/CHANGELOG b/doc/postfwd.CHANGELOG similarity index 80% rename from doc/CHANGELOG rename to doc/postfwd.CHANGELOG index ad454cb..e1391eb 100644 --- a/doc/CHANGELOG +++ b/doc/postfwd.CHANGELOG @@ -1,3 +1,90 @@ +1.32 +==== +- feature: new option --save_rates= allows to load and save + rate limit counters to disk on program start and termination. + this allows rate limit persistence during restarts and reboots + (requires perl module 'Storable') +- feature: the --debugitem="sender=example\.org$" option + allows verbose logging for particular requests +- feature: the debug() action allows verbose logging for certain + rules: + ------------------------------------------------------------ + id=R01 + client_address=1.1.1.1 + action=debug(on) + id=R02 + ... + id=R42 + action=debug(off) + ------------------------------------------------------------ +- feature: nested commands are possible now, e.g.: + ------------------------------------------------------------ + # throttle + action=rate(client_address/10/60/wait(3)) + ------------------------------------------------------------ +- feature: new mail(server/helo/from/to/subject/body) action. + Please take a look at the manual, especially about + it's limitations, before using it! + ------------------------------------------------------------ + # alert + action=size(recipient_domain/100000000/86400/mail(mailhost/helo/from/to/subject/text)) + ------------------------------------------------------------ + +1.31 +==== +- feature: single cache items can be wiped using --delcache + or --delrate options. use --dumpcache to identify +- feature: sasl_username is logged if available + (thanks to Bernhard Schmidt) +- code: rate limit action is executed, if the first request exceeds the limit +- code: exceeded ratecounters will not be kept permanently anymore. this + allows further requests to pass, if they are below the limit +- code: rate limits are evaluated at ruleset stage now, which leads to + much more comprehensible behaviour. due to this change the request + cache is now disabled, if rate limits are used. use the + --fast_limit_evaluation option to revert to the former mode. + +1.30 +==== +- feature: new parser enhancement allows to omit the trailing "\" for multi-line rules, + if the following lines are prefixed by whitespace characters: + -------------------------------------- + id=RCPTCOUNT + protocol_state == END-OF-MESSAGE + client_address != 10.1.1.0/24 + recipient_count >= 100 + action=REJECT too many recipients + -------------------------------------- +- feature: new plugin interface (BETA) +- feature: Time::HiRes is used if available +- feature: new $$ratecount variable for rate() actions +- feature: ported --dumpstats and --dumpcache option from postfwd2 +- bugfix: fixed program usage statistics (--summary) +- docs: documentation updates + +1.22 +===== +- feature: new option --keep_rates +- feature: queueid is logged when available +- bugfix: rate limits using the same item and the same limits + did not work correctly (thanks to Yves Blusseau): + id=INT01; INT_DOMAIN==1; \ + action=rate(sender/100/60/450 4.7.1 too much for internal domains) + id=EXT01; EXT_DOMAIN==1; \ + action=rate(sender/100/60/450 4.7.1 too much for external domains) +- bugfix: small fix for cleanup of old rate limits +- docs: documentation updates and fixes (thanks to Vincent Lefevre) + +1.21 +===== +- feature: postfwd supports multiple rate limits to the same items now. + this means that the following will now work as expected: + id=R001; recipient_count>=100; action=rate(sender/3/3600/WARN state RED) + id=R002; recipient_count>=100; action=rate(sender/2/3600/WARN state YELLOW) + id=R003; recipient_count>=100; action=rate(sender/1/3600/WARN state GREEN) +- code: ported command-line option --facility from postfwd2 +- docs: documentation updates and fixes (thanks to Vincent Lefevre) + 1.20 ===== - code: changed the default umask for the server socket to 0111 diff --git a/doc/postfwd.html b/doc/postfwd.html index ec8de57..c3023ff 100644 --- a/doc/postfwd.html +++ b/doc/postfwd.html @@ -51,54 +51,70 @@

postfwd [OPTIONS] [SOURCE1, SOURCE2, ...]

         Ruleset: (at least one, multiple use is allowed):
-        -f, --file <file>           reads rules from <file>
-        -r, --rule <rule>           adds <rule> to config
+ -f, --file <file> reads rules from <file> + -r, --rule <rule> adds <rule> to config
         Scoring:
-        -s, --scores <v>=<r>        returns <r> when score exceeds <v>
+ -s, --scores <v>=<r> returns <r> when score exceeds <v> +
+        Control:
+        -d, --daemon                 run postfwd as daemon
+        -k, --kill                   stops daemon
+            --reload                 reloads configuration
+            --dumpstats              displays usage statistics
+            --dumpcache              displays cache contents
+            --delcache <item>        removes an item from the request cache
+            --delrate <item>         removes an item from the rate cache
         Networking:
-        -d, --daemon                run postfwd as daemon
-        -i, --interface <dev>       listen on interface <dev>
-        -p, --port <port>           listen on port <port>
-            --proto <proto>         socket type (tcp or unix)
-        -u, --user <name>           set uid to user <name>
-        -g, --group <name>          set gid to group <name>
-            --umask <mask>          set umask for file permissions
-        -R, --chroot <path>         chroot the daemon to <path>
-            --pidfile <path>        create pidfile under <path>
-        -l, --logname <label>       label for syslog messages
-            --loglen <int>          truncates syslogs after <int> chars
+ -i, --interface <dev> listen on interface <dev> + -p, --port <port> listen on port <port> + --proto <proto> socket type (tcp or unix) + -u, --user <name> set uid to user <name> + -g, --group <name> set gid to group <name> + --umask <mask> set umask for file permissions + -R, --chroot <path> chroot the daemon to <path> + --pidfile <path> create pidfile under <path> + --facility <f> syslog facility + --socktype <s> syslog socktype + -l, --logname <label> label for syslog messages + --loglen <int> truncates syslogs after <int> chars
         Caching:
-        -c, --cache <int>           sets the request-cache timeout to <int> seconds
-            --cache-no-size         ignores size attribute for caching
-            --cache-no-sender       ignores sender address in cache
-            --cache-rdomain-only    ignores localpart of recipient address in cache
-            --cache-rbl-timeout     default rbl timeout, if not specified in ruleset
-            --cache-rbl-default     default rbl response pattern to match (regexp)
-            --cacheid <item>, ..    list of attributes for request cache identifier
-            --cleanup-requests      cleanup interval in seconds for request cache
-            --cleanup-rbls          cleanup interval in seconds for rbl cache
-            --cleanup-rates         cleanup interval in seconds for rate cache
+ -c, --cache <int> sets the request-cache timeout to <int> seconds + --cache-no-size ignores size attribute for caching + --cache-no-sender ignores sender address in cache + --cache-rdomain-only ignores localpart of recipient address in cache + --cache-rbl-timeout default rbl timeout, if not specified in ruleset + --cache-rbl-default default rbl response pattern to match (regexp) + --cacheid <item>, .. list of attributes for request cache identifier + --cleanup-requests cleanup interval in seconds for request cache + --cleanup-rbls cleanup interval in seconds for rbl cache + --cleanup-rates cleanup interval in seconds for rate cache
         Optional:
-        -t, --test                  testing, always returns "dunno"
-        -v, --verbose               verbose logging, use twice (-vv) to increase level
-        -S, --summary <int>         show some usage statistics every <int> seconds
-            --norulelog             disbles rule logging
-            --norulestats           disables per rule statistics
-            --noidlestats           disables statistics when idle
-        -n, --nodns                 disable dns
-            --nodnslog              disable dns logging
-            --dns_async_txt         perform dnsbl A and TXT lookups simultaneously
-            --dns_timeout           timeout in seconds for asynchonous dns queries
-            --dns_timeout_max       maximum of dns timeouts until a dnsbl will be deactivated
-            --dns_timeout_interval  interval in seconds for dns timeout maximum counter
-            --dns_max_ns_lookups    max names to look up with sender_ns_addrs
-            --dns_max_mx_lookups    max names to look up with sender_mx_addrs
-        -I, --instantcfg            re-reads rulefiles for every new request
-            --config_timeout <i>        parser timeout in seconds
+ -t, --test testing, always returns "dunno" + -v, --verbose verbose logging, use twice (-vv) to increase level + -S, --summary <int> show some usage statistics every <int> seconds + --norulelog disbles rule logging + --norulestats disables per rule statistics + --noidlestats disables statistics when idle + -n, --nodns disable dns + --nodnslog disable dns logging + --dns_async_txt perform dnsbl A and TXT lookups simultaneously + --dns_timeout timeout in seconds for asynchonous dns queries + --dns_timeout_max maximum of dns timeouts until a dnsbl will be deactivated + --dns_timeout_interval interval in seconds for dns timeout maximum counter + --dns_max_ns_lookups max names to look up with sender_ns_addrs + --dns_max_mx_lookups max names to look up with sender_mx_addrs + -I, --instantcfg re-reads rulefiles for every new request + --config_timeout <i> parser timeout in seconds + --keep_rates do not clear rate limit counters on reload + --save_rates <file> save and load rate limits on disk + --fast_limit_evaluation evaluate rate limits before ruleset is parsed +
+        Plugins:
+            --plugins <file>        loads postfwd plugins from file
         Informational (use only at command-line!):
         -C, --showconfig            shows ruleset summary, -v for verbose
@@ -107,9 +123,6 @@
         -V, --version               shows program version
         -h, --help                  shows usage
         -m, --manual                shows program manual
-
-        Plugins:
-            --plugins <file>        loads plugins from <file>


@@ -138,7 +151,7 @@ which should allow straightforward and easy-to-read configurations.

A configuration line consists of optional item=value pairs, separated by semicolons (`;`) and the appropriate desired action:

-        [ <item1>[=><~]=<value>; <item2>[=><~]=<value>; ... ] action=<result>
+ [ <item1>=<value>; <item2>=<value>; ... ] action=<result>

Example:

         client_address=192.168.1.1 ; sender==no@bad.local ; action=REJECT
@@ -167,10 +180,19 @@ or trailing whitespace characters will be ignored. Use '#' to comment your confi appreciate.

A ruleset consists of one or multiple rules, which can be loaded from files or passed as command line arguments. Please see the COMMAND LINE section below for more information on this topic.

-

Rules can span multiple lines by adding a trailing backslash ``\'' character:

+

Since postfwd version 1.30 rules spanning span multiple lines can be defined by prefixing the following +lines with one or multiple whitespace characters (or '}' for macros):

-        id=R_001 ;  client_address=192.168.1.0/24; sender==no@bad.local; \
-                    action=REJECT please use your relay from there
+ id=RULE001 + client_address=192.168.1.0/24 + sender==no@bad.local + action=REJECT no access +

postfwd versions prior to 1.30 require trailing ';' and '\'-characters:

+
+        id=RULE001; \
+                client_address=192.168.1.0/24; \
+                sender==no@bad.local; \
+                action=REJECT no access

ITEMS

@@ -236,8 +258,14 @@ arguments. Please see the COMMAND LINE section below for more information on thi this enables version based checks in your rulesets (e.g. for migration). works with old versions too, because a non-existing item always returns false: - id=R01; version~=1.10; sender_domain==some.org \ + # version >= 1.10 + id=R01; version~=1\.[1-9][0-9]; sender_domain==some.org \ ; action=REJECT sorry no access +
+        ratecount               - only available for rate(), size() and rcpt() actions.
+                                  contains the actual limit counter:
+                                        id=R01; action=rate(sender/200/600/REJECT limit of 200 exceeded [$$ratecount hits])
+                                        id=R02; action=rate(sender/100/600/WARN limit of 100 exceeded [$$ratecount hits])

Besides these you can specify any attribute of the postfix policy delegation protocol. Feel free to combine them the way you need it (have a look at the EXAMPLES section below).

Most values can be specified as regular expressions (PCRE). Please see the table below @@ -287,34 +315,33 @@ for details:

encryption_keysize=256 mask = numeric, will match if keysize >= 256 ...

the current list can be found at http://www.postfix.org/SMTPD_POLICY_README.html. Please read carefully about which -attribute can be used at which level of the smtp transaction (e.g. size will only work reliably at END_OF_DATA level). +attribute can be used at which level of the smtp transaction (e.g. size will only work reliably at END-OF-MESSAGE level). Pattern matching is performed case insensitive.

Multiple use of the same item is allowed and will compared as logical OR, which means that this will work as expected:

-        id=TRUST001; action=OK; encryption_keysize=64;          \
-                ccert_fingerprint=11:22:33:44:55:66:77:88:99;   \
-                ccert_fingerprint=22:33:44:55:66:77:88:99:00;   \
-                ccert_fingerprint=33:44:55:66:77:88:99:00:11;   \
+        id=TRUST001; action=OK; encryption_keysize=64
+                ccert_fingerprint=11:22:33:44:55:66:77:88:99
+                ccert_fingerprint=22:33:44:55:66:77:88:99:00
+                ccert_fingerprint=33:44:55:66:77:88:99:00:11
                 sender=@domain\.local$

client_address, rbl and rhsbl items may also be specified as whitespace-or-comma-separated values:

-        id=SKIP01; action=dunno; \
+        id=SKIP01; action=dunno
                 client_address=192.168.1.0/24, 172.16.254.23
-        id=SKIP02; action=dunno; \
-                client_address= 10.10.3.32       \
-                                10.216.222.0/27
+ id=SKIP02; action=dunno + client_address=10.10.3.32 10.216.222.0/27

The following items currently have to be unique:

         id, minimum and maximum values, rblcount and rhsblcount

Any item can be negated by preceeding '!!' to it, e.g.:

-        id=TLS001 ;  hostname=!!^secure\.trust\.local$ ;  action=REJECT only secure.trust.local please
+ id=HOST001 ; hostname == !!secure.trust.local ; action=REJECT only secure.trust.local please

or using the right compare operator:

-        id=USER01 ;  sasl_username !~ /^(bob|alice)$/ ;  action=REJECT who is that?
+ id=HOST001 ; hostname != secure.trust.local ; action=REJECT only secure.trust.local please

To avoid confusion with regexps or simply for better visibility you can use '!!(...)':

-        id=USER01 ;  sasl_username=!!( (bob|alice) )  ;  action=REJECT who is that?
+ id=USER01 ; sasl_username = !!( (bob|alice) ) ; action=REJECT who is that?

Request attributes can be compared by preceeding '$$' characters, e.g.:

         id=R-003 ;  client_name = !! $$helo_name      ;  action=WARN helo does not match DNS
@@ -322,6 +349,29 @@ Pattern matching is performed case insensitive.

id=R-003 ; client_name = !!($$(helo_name)) ; action=WARN helo does not match DNS

This is only valid for PCRE values (see list above). The comparison will be performed as case insensitive exact match. Use the '-vv' option to debug.

+

These special items will be reset for any new rule:

+
+        rblcount        - contains the number of RBL answers
+        rhsblcount      - contains the number of RHSBL answers
+        matches         - contains the number of matched items
+        dnsbltext       - contains the dns TXT part of all RBL and RHSBL replies in the form
+                          rbltype:rblname:<txt>; rbltype:rblname:<txt>; ...
+

These special items will be changed for any matching rule:

+
+        request_hits    - contains ids of all matching rules
+

This means that it might be necessary to save them, if you plan to use these values in later rules:

+
+        # set vals
+        id=RBL01 ; rhsblcount=all; rblcount=all
+                action=set(HIT_rhls=$$rhsblcount,HIT_rbls=$$rblcount,HIT_txt=$$dnsbltext)
+                rbl=list.dsbl.org, bl.spamcop.net, dnsbl.sorbs.net, zen.spamhaus.org
+                rhsbl_client=rddn.dnsbl.net.au, rhsbl.ahbl.org, rhsbl.sorbs.net
+                rhsbl_sender=rddn.dnsbl.net.au, rhsbl.ahbl.org, rhsbl.sorbs.net
+
+        # compare
+        id=RBL02 ; HIT_rhls>=1 ; HIT_rbls>=1 ; action=554 5.7.1 blocked using $$HIT_rhls RHSBLs and $$HIT_rbls RBLs [INFO: $$HIT_txt]
+        id=RBL03 ; HIT_rhls>=2               ; action=554 5.7.1 blocked using $$HIT_rhls RHSBLs [INFO: $$HIT_txt]
+        id=RBL04 ; HIT_rbls>=2               ; action=554 5.7.1 blocked using $$HIT_rbls RBLs [INFO: $$HIT_txt]

FILES

@@ -341,15 +391,15 @@ Use the '-vv' option to debug.

id=R001 ; ccert_fingerprint==table:/etc/postfwd/wl_ccerts ; action=DUNNO

This will ignore the right-hand value. Items can be mixed:

-        id=R002 ;  action=REJECT \
-                client_name==unknown; \
+        id=R002 ;  action=REJECT
+                client_name==unknown
                 client_name==file:/etc/postfwd/blacklisted

and for non pcre (comma separated) items:

-        id=R003 ;  action=REJECT \
+        id=R003 ;  action=REJECT
                 client_address==10.1.1.1, file:/etc/postfwd/blacklisted
-        id=R004 ;  action=REJECT \
+        id=R004 ;  action=REJECT
                 rbl=myrbl.home.local, zen.spamhaus.org, file:/etc/postfwd/rbls_changing

You can check your configuration with the --show_config option at the command line:

@@ -447,16 +497,25 @@ rule containing only an action statement:

please note that <action> is currently limited to postfix actions (no postfwd actions)! # no more than 3 requests per 5 minutes # from the same "unknown" client - id=RATE01 ; client_name==unknown ; \ - action==rate(client_address/3/300/450 4.7.1 sorry, max 3 requests per 5 minutes)
+ id=RATE01 ; client_name==unknown + action=rate(client_address/3/300/450 4.7.1 sorry, max 3 requests per 5 minutes) + Please note also that the order of rate limits in your ruleset is important, which means + that this: + # works as expected + id=R001; action=rcpt(sender/500/3600/REJECT limit of 500 recipients per hour for sender $$sender exceeded) + id=R002; action=rcpt(sender/200/3600/WARN state YELLOW for sender $$sender) + leads to different results than this: + # rule R002 never gets executed + id=R001; action=rcpt(sender/200/3600/WARN state YELLOW for sender $$sender) + id=R002; action=rcpt(sender/500/3600/REJECT limit of 500 recipients per hour for sender $$sender exceeded)
         size (<item>/<max>/<time>/<action>)
         this command works similar to the rate() command with the difference, that the rate counter is
         increased by the request's size attribute. to do this reliably you should call postfwd from
         smtpd_end_of_data_restrictions. if you want to be sure, you could check it within the ruleset:
            # size limit 1.5mb per hour per client
-           id=SIZE01 ;  state==END_OF_DATA ;  client_address==!!(10.1.1.1); \
-              action==size(client_address/1572864/3600/450 4.7.1 sorry, max 1.5mb per hour)
+ id=SIZE01 ; protocol_state==END-OF-MESSAGE ; client_address!=10.1.1.1 + action=size(client_address/1572864/3600/450 4.7.1 sorry, max 1.5mb per hour)
         rcpt (<item>/<max>/<time>/<action>)
         this command works similar to the rate() command with the difference, that the rate counter is
@@ -464,8 +523,8 @@ rule containing only an action statement:

from smtpd_data_restrictions or smtpd_end_of_data_restrictions. if you want to be sure, you could check it within the ruleset: # recipient count limit 3 per hour per client - id=RCPT01 ; state==END_OF_DATA ; client_address==!!(10.1.1.1); \ - action==rcpt(client_address/3/3600/450 4.7.1 sorry, max 3 recipients per hour)
+ id=RCPT01 ; protocol_state==END-OF-MESSAGE ; client_address!=10.1.1.1 + action=rcpt(client_address/3/3600/450 4.7.1 sorry, max 3 recipients per hour)
         ask (<addr>:<port>[:<ignore>])
         allows to delegate the policy decision to another policy service (e.g. postgrey). the first
@@ -473,9 +532,14 @@ rule containing only an action statement:

specified to tell postfwd to ignore certain answers and go on parsing the ruleset: # example1: query postgrey and return it's answer to postfix id=GREY; client_address==10.1.1.1; action=ask(127.0.0.1:10031) - # example2: query postgrey but ignore it's answer, if it matches 'DUNNO' + # example2: query postgrey but ignore the answer, if it matches 'DUNNO' # and continue parsing postfwd's ruleset id=GREY; client_address==10.1.1.1; action=ask(127.0.0.1:10031:^dunno$)
+
+        mail(server/helo/from/to/subject/body)
+        Very basic mail command, that sends a message with the given arguments. LIMITATIONS:
+        This basically performs a telnet. No authentication or TLS are available. Additionally it does
+        not track notification state and will notify you any time, the corresponding rule hits.
         wait (<delay>)
         pauses the program execution for <delay> seconds. use this for
@@ -483,7 +547,7 @@ rule containing only an action statement:

         note (<string>)
         just logs the given string and continues parsing the ruleset.
-        if the string is empty, nothing will be logged.
+ if the string is empty, nothing will be logged (noop).
         quit (<code>)
         terminates the program with the given exit-code. postfix doesn`t
@@ -491,29 +555,6 @@ rule containing only an action statement:

You can reference to request attributes, like

         id=R-HELO ;  helo_name=^[^\.]+$ ;  action=REJECT invalid helo '$$helo_name'
-

These special attributes will be reset for any new rule:

-
-        rblcount        - contains the number of RBL answers
-        rhsblcount      - contains the number of RHSBL answers
-        matches         - contains the number of matched items
-        dnsbltext       - contains the dns TXT part of all RBL and RHSBL replies in the form
-                          rbltype:rblname:<txt>; rbltype:rblname:<txt>; ...
-

These special attributes will be changed for any matching rule:

-
-        request_hits    - contains ids of all matching rules
-

This means that it might be necessary to save them, if you plan to use these values in later rules:

-
-        # set vals
-        id=RBL01 ; rhsblcount=all ; rblcount=all ; \
-                rbl=list.dsbl.org, bl.spamcop.net, dnsbl.sorbs.net, zen.spamhaus.org ; \
-                rhsbl_client=rddn.dnsbl.net.au, rhsbl.ahbl.org, rhsbl.sorbs.net ; \
-                rhsbl_sender=rddn.dnsbl.net.au, rhsbl.ahbl.org, rhsbl.sorbs.net ; \
-                action=set(HIT_rhls=$$rhsblcount,HIT_rbls=$$rblcount,HIT_txt=$$dnsbltext)
-
-        # compare
-        id=RBL02 ; HIT_rhls>=1 ; HIT_rbls>=1 ; action=554 5.7.1 blocked using $$HIT_rhls RHSBLs and $$HIT_rbls RBLs [INFO: $$HIT_txt]
-        id=RBL03 ; HIT_rhls>=2               ; action=554 5.7.1 blocked using $$HIT_rhls RHSBLs [INFO: $$HIT_txt]
-        id=RBL04 ; HIT_rbls>=2               ; action=554 5.7.1 blocked using $$HIT_rbls RBLs [INFO: $$HIT_txt]

MACROS/ACLS

@@ -536,18 +577,18 @@ First the macros have to be defined as follows:

&&GONOW ; &&RBLS ; client_name=[\.-_](adsl|dynamic|ppp|)[\.-_]

Macros can contain macros, too:

-        # definition (note the trailing "\" characters)
-        &&RBLS {                                                \
-                rbl=zen.spamhaus.org ;                          \
-                rbl=list.dsbl.org ;                             \
-                rbl=bl.spamcop.net ;                            \
-                rbl=dnsbl.sorbs.net ;                           \
-                rbl=ix.dnsbl.manitu.net ;                       \
+        # definition
+        &&RBLS{
+                rbl=zen.spamhaus.org
+                rbl=list.dsbl.org
+                rbl=bl.spamcop.net
+                rbl=dnsbl.sorbs.net
+                rbl=ix.dnsbl.manitu.net
         };
-        &&DYNAMIC {                                             \
-                client_name=^unknown$ ;                         \
-                client_name=(\d+[\.-_]){4} ;                    \
-                client_name=[\.-_](adsl|dynamic|ppp|)[\.-_] ;   \
+        &&DYNAMIC{
+                client_name=^unknown$
+                client_name=(\d+[\.-_]){4}
+                client_name=[\.-_](adsl|dynamic|ppp|)[\.-_]
         };
         &&GOAWAY { &&RBLS; &&DYNAMIC; };
         # rules
@@ -556,7 +597,141 @@ First the macros have to be defined as follows:

PLUGINS

-

Please visit http://www.postfwd.org/postfwd.plugins

+

Description

+

The plugin interface allow you to define your own checks and enhance postfwd's +functionality. Feel free to share useful things!

+

Warning

+

Note that the plugin interface is still at devel stage. Please test your plugins +carefully, because errors may cause postfwd to break! It is also +allowed to override attributes or built-in functions, but be sure that you know +what you do because some of them are used internally.

+

Please keep security in mind, when you access sensible ressources and never, ever +run postfwd as privileged user! Also never trust your input (especially hostnames, +and e-mail addresses).

+

ITEMS

+

Item plugins are perl subroutines which integrate additional attributes to requests +before they are evaluated against postfwd's ruleset like any other item of the +policy delegation protocol. This allows you to create your own checks.

+

plugin-items can not be used selective. these functions will be executed for every +request postfwd receives, so keep performance in mind.

+
+        SYNOPSIS: %result = postfwd_items_plugin{<name>}(%request)
+

means that your subroutine, called <name>, has access to a hash called %request, +which contains all request attributes, like $request{client_name} and must +return a value in the following form:

+
+        save: $result{<item>} = <value>
+

this creates the new item <item> containing <value>, which will be integrated in +the policy delegation request and therefore may be used in postfwd's ruleset.

+
+        # do NOT remove the next line
+        %postfwd_items_plugin = (
+
+                # EXAMPLES - integrated in postfwd. no need to activate them here.
+                
+                        # allows to check postfwd version in ruleset
+                        "version" => sub {
+                                my(%request) = @_;
+                                my(%result) = (
+                                        "version" => $NAME." ".$VERSION,
+                                );
+                                return %result;
+                        },
+                
+                        # sender_domain and recipient_domain
+                        "address_parts" => sub {
+                                my(%request) = @_;
+                                my(%result) = ();
+                                $request{sender} =~ /@([^@]*)$/;
+                                $result{sender_domain} = ($1 || '');
+                                $request{recipient} =~ /@([^@]*)$/;
+                                $result{recipient_domain} = ($1 || '');
+                                return %result;
+                        },
+
+        # do NOT remove the next line
+        );
+

COMPARE

+

Compare plugins allow you to define how your new items should be compared to the ruleset. +These are optional. If you don't specify one, the default (== for exact match, =~ for PCRE, ...) +will be used.

+
+        SYNOPSIS:  <item> => sub { return &{$postfwd_compare{<type>}}(@_); },
+
+        # do NOT remove the next line
+        %postfwd_compare_plugin = (
+
+                EXAMPLES - integrated in postfwd. no need to activate them here.
+        
+                        # Simple example
+                        # SYNOPSIS:  <result> = <item> (return &{$postfwd_compare{<type>}}(@_))
+                        "client_address"  => sub { return &{$postfwd_compare{cidr}}(@_); },
+                        "size"            => sub { return &{$postfwd_compare{numeric}}(@_); },
+                        "recipient_count" => sub { return &{$postfwd_compare{numeric}}(@_); },
+        
+                        # Complex example
+                        # SYNOPSIS:  <result> = <item>(<operator>, <ruleset value>, <request value>, <request>)
+                        "numeric" => sub {
+                                my($cmp,$val,$myitem,%request) = @_;
+                                my($myresult) = undef;  $myitem ||= "0"; $val ||= "0";
+                                if ($cmp eq '==') {
+                                        $myresult = ($myitem == $val);
+                                } elsif ($cmp eq '=<') {
+                                        $myresult = ($myitem <= $val);
+                                } elsif ($cmp eq '=>') {
+                                        $myresult = ($myitem >= $val);
+                                } elsif ($cmp eq '!=') {
+                                        $myresult = not($myitem == $val);
+                                } elsif ($cmp eq '!<') {
+                                        $myresult = not($myitem <= $val);
+                                } elsif ($cmp eq '!>') {
+                                        $myresult = not($myitem >= $val);
+                                } else {
+                                        $myresult = ($myitem >= $val);
+                                };
+                                return $myresult;
+                        },
+
+        # do NOT remove the next line
+        );
+

ACTIONS

+

Action plugins allow to define new postfwd actions. By setting the $stop-flag you can decide to +continue or to stop parsing the ruleset.

+
+        SYNOPSIS:  (<stop rule parsing>, <next rule index>, <return action>, <logprefix>, <request>) =
+                        <action> (<current rule index>, <current time>, <command name>, <argument>, <logprefix>, <request>)
+
+        # do NOT remove the next line
+        %postfwd_actions_plugin = (
+
+                # EXAMPLES - integrated in postfwd. no need to activate them here.
+        
+                        # note(<logstring>) command
+                        "note"  => sub {
+                                my($index,$now,$mycmd,$myarg,$myline,%request) = @_;
+                                my($myaction) = $default_action; my($stop) = 0;
+                                mylogs 'info', "[RULES] ".$myline." - note: ".$myarg if $myarg;
+                                return ($stop,$index,$myaction,$myline,%request);
+                        },
+        
+                        # skips next <myarg> rules
+                        "skip" => sub {
+                                my($index,$now,$mycmd,$myarg,$myline,%request) = @_;
+                                my($myaction) = $default_action; my($stop) = 0;
+                                $index += $myarg if ( $myarg and not(($index + $myarg) > $#Rules) );
+                                return ($stop,$index,$myaction,$myline,%request);
+                        },
+        
+                        # dumps current request contents to syslog
+                        "dumprequest" => sub {
+                                my($index,$now,$mycmd,$myarg,$myline,%request) = @_;
+                                my($myaction) = $default_action; my($stop) = 0;
+                                map { mylogs 'info', "[DUMP] rule=$index, Attribute: $_=$request{$_}" } (keys %request);
+                                return ($stop,$index,$myaction,$myline,%request);
+                        },
+
+        # do NOT remove the next line
+        );

COMMAND LINE

@@ -571,29 +746,51 @@ that at least one of the following is required for postfwd to work.

-r, --rule <rule> Adds <rule> to ruleset. Remember that you might have to quote strings that contain whitespaces or shell characters.
-

Plugins

-
-        --plugins
-        A file containing plugin routines for postfwd. Please see the
-        PLUGINS section for more information.

Scoring

         -s, --scores <val>=<action>
         Returns <action> to postfix, when the request's score exceeds <val>

Multiple usage is allowed. Just chain your arguments, like:

-        postfwd -r "<item>=<value>;action=<result>" -f <file> -f <file> --plugins <file> ...
+        postfwd -r "<item>=<value>;action=<result>" -f <file> -f <file> ...
           or
         postfwd --scores 4.5="WARN high score" --scores 5.0="REJECT postfwd score too high" ...

In case of multiple scores, the highest match will count. The order of the arguments will be reflected in the postfwd ruleset.

-

Networking

-

postfwd can be run as daemon so that it listens on the network for incoming requests. -The following arguments will control it's behaviour in this case.

+

Control

         -d, --daemon
         postfwd will run as daemon and listen on the network for incoming
         queries (default 127.0.0.1:10040).
+
+        -k, --kill
+        Stops a running postfwd daemon.
+
+        --reload
+        Reloads configuration.
+
+        --dumpstats
+        Displays program usage statistics.
+
+        --dumpcache
+        Displays cache contents.
+
+        --delcache <item>
+        Removes an item from the request cache. Use --dumpcache to identify objects.
+        E.g.:
+                # postfwd --dumpcache
+                ...
+                %rate_cache -> %sender=gmato@jqvo.org -> %RATE002+2_600 -> @count    -> '1'
+                %rate_cache -> %sender=gmato@jqvo.org -> %RATE002+2_600 -> @maxcount -> '2'
+                ...
+                # postfwd --delrate="sender=gmato@jqvo.org"
+                rate cache item 'sender=gmato@jqvo.org' removed
+
+        --delrate <item>
+        Removes an item from the rate cache. Use --dumpcache to identify objects.
+

Networking

+

postfwd can be run as daemon so that it listens on the network for incoming requests. +The following arguments will control it's behaviour in this case.

         -i, --interface <dev>
         Bind postfwd to the specified interface (default 127.0.0.1).
@@ -623,6 +820,13 @@ The following arguments will control it's behaviour in this case.

         --pidfile <path>
         The process id will be saved in the specified file.
+
+        --facility <f>
+        sets the syslog facility, default is 'mail'
+
+        --socktype <s>
+        sets the Sys::Syslog socktype to 'native', 'inet' or 'unix'.
+        Default is to auto-detect this depening on module version and os.
         -l, --logname <label>
         Labels the syslog messages. Useful when running multiple
@@ -630,6 +834,11 @@ The following arguments will control it's behaviour in this case.

         --loglen <int>
         Truncates any syslog message after <int> characters.
+

Plugins

+
+        --plugins <file>
+        Loads postfwd plugins from file. Please see http://postfwd.org/postfwd.plugins
+        or the plugins.postfwd.sample that is available from the tarball for more info.

Optional arguments

These parameters influence the way postfwd is working. Any of them can be combined.

@@ -754,7 +963,23 @@ The following arguments will control it's behaviour in this case.

         --config_timeout    (default=3)
         timeout in seconds to parse a single configuration line. if exceeded, the rule will
-        be skipped. this is used to prevent problems due to large files or loops.
+ be skipped. this is used to prevent problems due to large files or loops. + + --keep_rates (default=0) + With this option set postfwd does not clear the rate limit counters on reload. Please + note that you have to restart (not reload) postfwd with this option if you change + any rate limit rules.
+
+        --save_rates    (default=none)
+        With this option postfwd saves existing rate limit counters to disk and reloads them
+        on program start. This allows persistent rate limits across program restarts or reboots.
+        Please note that postfwd needs read and write access to the specified file.
+
+        --fast_limit_evaluation    (default=0)
+        Once a ratelimit was set by the ruleset, future requests will be evaluated against it
+        before consulting the ruleset. This mode was the default behaviour until v1.30.
+        With this mode rate limits will be faster, but also eventually set up
+        whitelisting-rules within the ruleset might not work as expected.

Informational arguments

These arguments are for command line usage only. Never ever use them with postfix spawn!

@@ -812,18 +1037,25 @@ the '-I' switch to have your configuration refreshed for every request postfwd r
         # 1. 30MB for systems in *.customer1.tld
         # 2. 20MB for SASL user joejob
         # 3. 10MB default
-        id=SZ001; state==END-OF-MESSAGE; action=DUNNO; size<=30000000 ; client_name=\.customer1.tld$
-        id=SZ002; state==END-OF-MESSAGE; action=DUNNO; size<=20000000 ; sasl_username==joejob
-        id=SZ002; state==END-OF-MESSAGE; action=DUNNO; size<=10000000
-        id=SZ100; state==END-OF-MESSAGE; action=REJECT message too large
+ id=SZ001; protocol_state==END-OF-MESSAGE; action=DUNNO; size<=30000000 ; client_name=\.customer1.tld$ + id=SZ002; protocol_state==END-OF-MESSAGE; action=DUNNO; size<=20000000 ; sasl_username==joejob + id=SZ002; protocol_state==END-OF-MESSAGE; action=DUNNO; size<=10000000 + id=SZ100; protocol_state==END-OF-MESSAGE; action=REJECT message too large
         ## Selective Greylisting
+        ##
+        ## Note that postfwd does not include greylisting. This setup requires a running postgrey service
+        ## at port 10031 and the following postfix restriction class in your main.cf:
+        ##
+        ##      smtpd_restriction_classes = check_postgrey, ...
+        ##      check_postgrey = check_policy_service inet:127.0.0.1:10031
+        #
         # 1. if listed on zen.spamhaus.org with results 127.0.0.10 or .11, dns cache timeout 1200s
         # 2. Client has no rDNS
         # 3. Client comes from several dialin domains
-        id=GR001; action=greylisting ; rbl=dul.dnsbl.sorbs.net, zen.spamhaus.org/127.0.0.1[01]/1200
-        id=GR002; action=greylisting ; client_name=^unknown$
-        id=GR003; action=greylisting ; client_name=\.(t-ipconnect|alicedsl|ish)\.de$
+ id=GR001; action=check_postgrey ; rbl=dul.dnsbl.sorbs.net, zen.spamhaus.org/127.0.0.1[01]/1200 + id=GR002; action=check_postgrey ; client_name=^unknown$ + id=GR003; action=check_postgrey ; client_name=\.(t-ipconnect|alicedsl|ish)\.de$
         ## Date Time
         date=24.12.2007-26.12.2007          ;  action=450 4.7.1 office closed during christmas
@@ -831,7 +1063,7 @@ the '-I' switch to have your configuration refreshed for every request postfwd r
         time=-07:00:00 ;  sasl_username=jim ;  action=450 4.7.1 to early for you, jim
         time=22:00:00- ;  sasl_username=jim ;  action=450 4.7.1 to late now, jim
         months=-Apr                         ;  action=450 4.7.1 see you in may
-        days=!!Mon-Fri                      ;  action=greylist
+ days=!!Mon-Fri ; action=check_postgrey
         ## Usage of jump
         # The following allows a message size of 30MB for different
@@ -841,8 +1073,8 @@ the '-I' switch to have your configuration refreshed for every request postfwd r
         id=R003 ; action=jump(R100) ; ccert_fingerprint=AA:BB:CC:DD:...
         id=R004 ; action=jump(R100) ; ccert_fingerprint=AF:BE:CD:DC:...
         id=R005 ; action=jump(R100) ; ccert_fingerprint=DD:CC:BB:DD:...
-        id=R099 ; state==END-OF-MESSAGE; action=REJECT message too big (max. 10MB); size=10000000
-        id=R100 ; state==END-OF-MESSAGE; action=REJECT message too big (max. 30MB); size=30000000
+ id=R099 ; protocol_state==END-OF-MESSAGE; action=REJECT message too big (max. 10MB); size=10000000 + id=R100 ; protocol_state==END-OF-MESSAGE; action=REJECT message too big (max. 30MB); size=30000000
         ## Usage of score
         # The following rejects a mail, if the client
@@ -850,7 +1082,7 @@ the '-I' switch to have your configuration refreshed for every request postfwd r
         # - is listed in 1 RBL or 1 RHSBL and has no correct rDNS
         # - other clients without correct rDNS will be greylist-checked
         # - some whitelists are used to lower the score
-        id=S01 ; score=2.6              ; action=greylisting
+        id=S01 ; score=2.6              ; action=check_postgrey
         id=S02 ; score=5.0              ; action=REJECT postfwd score too high
         id=R00 ; action=score(-1.0)     ; rbl=exemptions.ahbl.org,list.dnswl.org,query.bondedsender.org,spf.trusted-forwarder.org
         id=R01 ; action=score(2.5)      ; rbl=bl.spamcop.net, list.dsbl.org, dnsbl.sorbs.net
@@ -863,10 +1095,10 @@ the '-I' switch to have your configuration refreshed for every request postfwd r
         # The following temporary rejects requests from "unknown" clients, if they
         # 1. exceeded 30 requests per hour or
         # 2. tried to send more than 1.5mb within 10 minutes
-        id=RATE01 ;  client_name==unknown ;  state==RCPT ; \
-                action==rate(client_address/30/3600/450 4.7.1 sorry, max 30 requests per hour)
-        id=SIZE01 ;  client_name==unknown ;  state==END_OF_DATA ; \
-                action==size(client_address/1572864/600/450 4.7.1 sorry, max 1.5mb per 10 minutes)
+ id=RATE01 ; client_name==unknown ; protocol_state==RCPT + action=rate(client_address/30/3600/450 4.7.1 sorry, max 30 requests per hour) + id=SIZE01 ; client_name==unknown ; protocol_state==END-OF-MESSAGE + action=size(client_address/1572864/600/450 4.7.1 sorry, max 1.5mb per 10 minutes)
         ## Macros
         # definition
@@ -879,34 +1111,34 @@ the '-I' switch to have your configuration refreshed for every request postfwd r
 
         ## Groups
         # definition
-        &&RBLS { \
-                rbl=zen.spamhaus.org ;          \
-                rbl=list.dsbl.org ;             \
-                rbl=bl.spamcop.net ;            \
-                rbl=dnsbl.sorbs.net ;           \
-                rbl=ix.dnsbl.manitu.net ;       \
+        &&RBLS{
+                rbl=zen.spamhaus.org
+                rbl=list.dsbl.org
+                rbl=bl.spamcop.net
+                rbl=dnsbl.sorbs.net
+                rbl=ix.dnsbl.manitu.net
         };
-        &&RHSBLS { \
+        &&RHSBLS{
                 ...
         };
-        &&DYNAMIC { \
-                client_name==unknown ;                          \
-                client_name~=(\d+[\.-_]){4} ;                   \
-                client_name~=[\.-_](adsl|dynamic|ppp|)[\.-_] ;  \
+        &&DYNAMIC{
+                client_name==unknown
+                client_name~=(\d+[\.-_]){4}
+                client_name~=[\.-_](adsl|dynamic|ppp|)[\.-_]
                 ...
         };
-        &&BAD_HELO { \
-                helo_name==my.name.tld;         \
-                helo_name~=^([^\.]+)$;          \
-                helo_name~=\.(local|lan)$;      \
+        &&BAD_HELO{
+                helo_name==my.name.tld
+                helo_name~=^([^\.]+)$
+                helo_name~=\.(local|lan)$
                 ...
         };
-        &&MAINTENANCE { \
-                date=15.01.2007 ; \
-                date=15.04.2007 ; \
-                date=15.07.2007 ; \
-                date=15.10.2007 ; \
-                time=03:00:00 - 04:00:00 ; \
+        &&MAINTENANCE{
+                date=15.01.2007
+                date=15.04.2007
+                date=15.07.2007
+                date=15.10.2007
+                time=03:00:00 - 04:00:00
         };
         # rules
         id=COMBINED    ;  &&RBLS ;  &&DYNAMIC ;  action=REJECT dynamic client and listed on RBL
@@ -923,7 +1155,7 @@ the '-I' switch to have your configuration refreshed for every request postfwd r
 
         ## combined with enhanced rbl features
         #
-        id=RBL01 ; rhsblcount=all ; rblcount=all ; &&RBLS ; &&RHSBLS ; \
+        id=RBL01 ; rhsblcount=all ; rblcount=all ; &&RBLS ; &&RHSBLS
              action=set(HIT_dnsbls=$$rhsblcount,HIT_dnsbls+=$$rblcount,HIT_dnstxt=$$dnsbltext)
         id=RBL02 ; HIT_dnsbls>=2  ; action=554 5.7.1 blocked using $$HIT_dnsbls DNSBLs [INFO: $$HIT_dnstxt]

diff --git a/doc/postfwd.txt b/doc/postfwd.txt index a616319..299e75e 100644 --- a/doc/postfwd.txt +++ b/doc/postfwd.txt @@ -5,54 +5,70 @@ SYNOPSIS postfwd [OPTIONS] [SOURCE1, SOURCE2, ...] Ruleset: (at least one, multiple use is allowed): - -f, --file reads rules from - -r, --rule adds to config + -f, --file reads rules from + -r, --rule adds to config Scoring: - -s, --scores = returns when score exceeds + -s, --scores = returns when score exceeds + + Control: + -d, --daemon run postfwd as daemon + -k, --kill stops daemon + --reload reloads configuration + --dumpstats displays usage statistics + --dumpcache displays cache contents + --delcache removes an item from the request cache + --delrate removes an item from the rate cache Networking: - -d, --daemon run postfwd as daemon - -i, --interface listen on interface - -p, --port listen on port - --proto socket type (tcp or unix) - -u, --user set uid to user - -g, --group set gid to group - --umask set umask for file permissions - -R, --chroot chroot the daemon to - --pidfile create pidfile under - -l, --logname

+

postfwd2 - chroot setup


+If you care about security and want to run postfwd2 within a chroot environment you have to setup it up before. This document will give you an idea about what has to be prepared. + +

+How to create a minimal chroot environment for postfwd2
+=======================================================
+
+Tested with SLES 11 x86_64, customize this to suit your specific system.
+For example, on SLES 10 x86_64, use perl version 5.8.8 instead of 5.10.0
+and glibc version 2.4 instead of 2.11.1.
+
+cd $CHROOTDIR
+for dir in tmp dev var var/tmp etc lib64 usr usr/lib usr/lib/perl5 \
+  usr/lib/perl5/site_perl \
+  usr/lib/perl5/site_perl/5.10.0 \
+  usr/lib/perl5/site_perl/5.10.0/Net \
+  usr/lib/perl5/site_perl/5.10.0/Net/Server \
+  usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto ; do
+    mkdir $dir
+    chmod --reference /$dir $dir
+    chown --reference /$dir $dir
+done
+for file in dev/null etc/protocols etc/localtime etc/resolv.conf \
+  lib64/libnss_files-2.11.1.so lib64/libnss_files.so.2 \
+  usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto/TCP.pm \
+  usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto/UNIX.pm ; do
+    cp -p /$file $file
+done
+grep nobody /etc/passwd > etc/passwd
+grep nobody /etc/group > etc/group
+echo -e 'passwd: files\ngroup: files\nprotocols: files' > etc/nsswitch.conf
+
+=> Configure your syslog daemon to listen to $CHROOTDIR/dev/log:
+    echo 'SYSLOGD_ADDITIONAL_SOCKET_POSTFWD="$CHROOTDIR/dev/log"' \
+      >> /etc/sysconfig/syslog
+    /etc/init.d/syslog restart
+
+=> Place your postfwd configuration in $CHROOTDIR:
+    cp $POSTFWDCONF $CHROOTDIR/etc/postfwd.conf
+
+=> Start postfwd2:
+    /usr/local/sbin/postfwd2 --file=/etc/postfwd.conf --chroot=$CHROOTDIR
+
+
+List of directories
+===================
+
+tmp
+lib64
+dev
+var
+var/tmp
+etc
+usr
+usr/lib
+usr/lib/perl5
+usr/lib/perl5/site_perl
+usr/lib/perl5/site_perl/5.10.0
+usr/lib/perl5/site_perl/5.10.0/Net
+usr/lib/perl5/site_perl/5.10.0/Net/Server
+usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto
+
+
+List of files
+=============
+
+lib64/libnss_files.so.2
+lib64/libnss_files-2.11.1.so
+dev/null
+dev/log
+etc/localtime
+etc/protocols
+etc/postfwd.conf
+etc/nsswitch.conf
+etc/passwd
+etc/resolv.conf
+etc/group
+usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto/UNIX.pm
+usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto/TCP.pm
+

+ +Thanks to Lukas Wunner for providing this howto and the patch for postfwd2! + + + diff --git a/doc/postfwd2-chroot.txt b/doc/postfwd2-chroot.txt new file mode 100644 index 0000000..997e0d7 --- /dev/null +++ b/doc/postfwd2-chroot.txt @@ -0,0 +1,82 @@ +postfwd2 - chroot setup +======================= +If you care about security and want to run postfwd2 within a chroot environment you have to setup it up before. This document will give you an idea about what has to be prepared. + +How to create a minimal chroot environment for postfwd2 +======================================================= + +Tested with SLES 11 x86_64, customize this to suit your specific system. +For example, on SLES 10 x86_64, use perl version 5.8.8 instead of 5.10.0 +and glibc version 2.4 instead of 2.11.1. + +cd $CHROOTDIR +for dir in tmp dev var var/tmp etc lib64 usr usr/lib usr/lib/perl5 \ + usr/lib/perl5/site_perl \ + usr/lib/perl5/site_perl/5.10.0 \ + usr/lib/perl5/site_perl/5.10.0/Net \ + usr/lib/perl5/site_perl/5.10.0/Net/Server \ + usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto ; do + mkdir $dir + chmod --reference /$dir $dir + chown --reference /$dir $dir +done +for file in dev/null etc/protocols etc/localtime etc/resolv.conf \ + lib64/libnss_files-2.11.1.so lib64/libnss_files.so.2 \ + usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto/TCP.pm \ + usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto/UNIX.pm ; do + cp -p /$file $file +done +grep nobody /etc/passwd > etc/passwd +grep nobody /etc/group > etc/group +echo -e 'passwd: files\ngroup: files\nprotocols: files' > etc/nsswitch.conf + +=> Configure your syslog daemon to listen to $CHROOTDIR/dev/log: + echo 'SYSLOGD_ADDITIONAL_SOCKET_POSTFWD="$CHROOTDIR/dev/log"' \ + >> /etc/sysconfig/syslog + /etc/init.d/syslog restart + +=> Place your postfwd configuration in $CHROOTDIR: + cp $POSTFWDCONF $CHROOTDIR/etc/postfwd.conf + +=> Start postfwd2: + /usr/local/sbin/postfwd2 --file=/etc/postfwd.conf --chroot=$CHROOTDIR + + +List of directories +=================== + +tmp +lib64 +dev +var +var/tmp +etc +usr +usr/lib +usr/lib/perl5 +usr/lib/perl5/site_perl +usr/lib/perl5/site_perl/5.10.0 +usr/lib/perl5/site_perl/5.10.0/Net +usr/lib/perl5/site_perl/5.10.0/Net/Server +usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto + + +List of files +============= + +lib64/libnss_files.so.2 +lib64/libnss_files-2.11.1.so +dev/null +dev/log +etc/localtime +etc/protocols +etc/postfwd.conf +etc/nsswitch.conf +etc/passwd +etc/resolv.conf +etc/group +usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto/UNIX.pm +usr/lib/perl5/site_perl/5.10.0/Net/Server/Proto/TCP.pm + +Thanks to Lukas Wunner for providing this howto and the patch for postfwd2! + diff --git a/doc/CHANGELOG2 b/doc/postfwd2.CHANGELOG similarity index 69% rename from doc/CHANGELOG2 rename to doc/postfwd2.CHANGELOG index d31986b..1aa694a 100644 --- a/doc/CHANGELOG2 +++ b/doc/postfwd2.CHANGELOG @@ -1,3 +1,78 @@ +postfwd2 1.32 +============= +- feature: new option --save_rates= allows to load and save + rate limit counters to disk on program start and termination. + this allows rate limit persistence during restarts and reboots + (requires perl module 'Storable') +- feature: the --debugitem="sender=example\.org$" option + allows verbose logging for particular requests +- feature: the debug() action allows verbose logging for certain + rules: + ------------------------------------------------------------ + id=R01 + client_address=1.1.1.1 + action=debug(on) + id=R02 + ... + id=R42 + action=debug(off) + ------------------------------------------------------------ +- feature: nested commands are possible now, e.g.: + ------------------------------------------------------------ + # throttle + action=rate(client_address/10/60/wait(3)) + ------------------------------------------------------------ +- feature: new mail(server/helo/from/to/subject/body) action. + Please take a look at the manual, especially about + it's limitations, before using it! + ------------------------------------------------------------ + # alert + action=size(recipient_domain/100000000/86400/mail(mailhost/helo/from/to/subject/text)) + ------------------------------------------------------------ +- feature: --chroot option works now (patch by Lukas Wunner). + Look for his notes at http://postfwd.org/postfwd2-chroot.html + on how to set up the required chroot environment. + +postfwd2 1.31 +============= +- feature: single cache items can be wiped using --delcache + or --delrate options. use --dumpcache to identify +- feature: sasl_username is logged if available + (thanks to Bernhard Schmidt) +- code: rate limit action is executed, if the first request exceeds the limit +- code: exceeded ratecounters will not be kept permanently anymore. this + allows further requests to pass, if they are below the limit +- code: rate limits are evaluated at ruleset stage now, which leads to + much more comprehensible behaviour. due to this change the request + cache is now disabled, if rate limits are used. use the + --fast_limit_evaluation option to return to the former mode. + +postfwd2 1.30 +============= +- feature: new parser enhancement allows to omit the trailing "\" for multi-line rules, + if the following lines are prefixed by whitespace characters: + -------------------------------------- + id=RCPTCOUNT + protocol_state == END-OF-MESSAGE + client_address != 10.1.1.0/24 + recipient_count >= 100 + action=REJECT too many recipients + -------------------------------------- +- feature: new plugin interface (BETA) +- feature: Time::HiRes is used if available +- feature: multiple rate limits for the same items are supported now +- feature: new $$ratecount variable for rate() actions +- feature: new option --keep_rates +- code: new --debug class 'cleanup' +- docs: documentation updates + +postfwd2 1.22 +============= +- general: adapted postfwd1 versioning scheme +- feature: queueid is logged when available +- bugfix: rate limits did not work correctly (thanks to Yves Blusseau) +- docs: documentation updates and fixes (thanks to Vincent Lefevre) + postfwd2 1.00 ============= - code: changed the default umask for the server socket to 0111 diff --git a/doc/postfwd2.html b/doc/postfwd2.html index a860ba9..8bcfc90 100644 --- a/doc/postfwd2.html +++ b/doc/postfwd2.html @@ -85,7 +85,7 @@ --cache-no-size skip size for cache-id --no_parent_request_cache disable parent request cache --no_parent_rate_cache disable parent rate cache - --no_parent_dns_cache disable parent dns cache + --no_parent_dns_cache disable parent dns cache (default) --no_parent_cache disable all parent caches
         Rates:
@@ -99,7 +99,10 @@
             --failures <f>              max respawn failure counter
             --daemons <list>            list of daemons to start
             --dumpcache                 show cache contents
-            --dumpstats                 show statistics
+ --dumpstats show statistics + -R, --chroot <path> chroot to <path> before start + --delcache <item> removes an item from the request cache + --delrate <item> removes an item from the rate cache
         DNS:
         -n, --nodns                     skip any dns based test
@@ -119,11 +122,18 @@
             --noidlestats               disables statistics when idle
             --norulestats               disables per rule statistics
         -I, --instantcfg                reloads ruleset on every new request
-            --config_timeout <i>        parser timeout in seconds
+ --config_timeout <i> parser timeout in seconds + --keep_rates do not clear rate limit counters on reload + --save_rates <file> save and load rate limits on disk + --fast_limit_evaluation evaluate rate limits before ruleset is parsed +
+        Plugins:
+            --plugins <file>            loads postfwd plugins from file
         Logging:
         -l, --logname <label>           label for syslog messages
             --facility <s>              use syslog facility <s>
+            --socktype <s>              use syslog socktype <s>
             --nodnslog                  do not log dns results
             --anydnslog                 log any dns (even cached) results
             --norulelog                 do not log rule actions
@@ -170,7 +180,7 @@ which should allow straightforward and easy-to-read configurations.

A configuration line consists of optional item=value pairs, separated by semicolons (`;`) and the appropriate desired action:

-        [ <item1>[=><~]=<value>; <item2>[=><~]=<value>; ... ] action=<result>
+ [ <item1>=<value>; <item2>=<value>; ... ] action=<result>

Example:

         client_address=192.168.1.1 ; sender==no@bad.local ; action=REJECT
@@ -199,10 +209,19 @@ or trailing whitespace characters will be ignored. Use '#' to comment your confi appreciate.

A ruleset consists of one or multiple rules, which can be loaded from files or passed as command line arguments. Please see the COMMAND LINE section below for more information on this topic.

-

Rules can span multiple lines by adding a trailing backslash ``\'' character:

+

Since postfwd version 1.30 rules spanning span multiple lines can be defined by prefixing the following +lines with one or multiple whitespace characters (or '}' for macros):

-        id=R_001 ;  client_address=192.168.1.0/24; sender==no@bad.local; \
-                    action=REJECT please use your relay from there
+ id=RULE001 + client_address=192.168.1.0/24 + sender==no@bad.local + action=REJECT no access +

postfwd versions prior to 1.30 require trailing ';' and '\'-characters:

+
+        id=RULE001; \
+                client_address=192.168.1.0/24; \
+                sender==no@bad.local; \
+                action=REJECT no access

ITEMS

@@ -268,8 +287,14 @@ arguments. Please see the COMMAND LINE section below for more information on thi this enables version based checks in your rulesets (e.g. for migration). works with old versions too, because a non-existing item always returns false: - id=R01; version~=1.10; sender_domain==some.org \ + # version >= 1.10 + id=R01; version~=1\.[1-9][0-9]; sender_domain==some.org \ ; action=REJECT sorry no access +
+        ratecount               - only available for rate(), size() and rcpt() actions.
+                                  contains the actual limit counter:
+                                        id=R01; action=rate(sender/200/600/REJECT limit of 200 exceeded [$$ratecount hits])
+                                        id=R02; action=rate(sender/100/600/WARN limit of 100 exceeded [$$ratecount hits])

Besides these you can specify any attribute of the postfix policy delegation protocol. Feel free to combine them the way you need it (have a look at the EXAMPLES section below).

Most values can be specified as regular expressions (PCRE). Please see the table below @@ -319,34 +344,33 @@ for details:

encryption_keysize=256 mask = numeric, will match if keysize >= 256 ...

the current list can be found at http://www.postfix.org/SMTPD_POLICY_README.html. Please read carefully about which -attribute can be used at which level of the smtp transaction (e.g. size will only work reliably at END_OF_DATA level). +attribute can be used at which level of the smtp transaction (e.g. size will only work reliably at END-OF-MESSAGE level). Pattern matching is performed case insensitive.

Multiple use of the same item is allowed and will compared as logical OR, which means that this will work as expected:

-        id=TRUST001; action=OK; encryption_keysize=64;          \
-                ccert_fingerprint=11:22:33:44:55:66:77:88:99;   \
-                ccert_fingerprint=22:33:44:55:66:77:88:99:00;   \
-                ccert_fingerprint=33:44:55:66:77:88:99:00:11;   \
+        id=TRUST001; action=OK; encryption_keysize=64
+                ccert_fingerprint=11:22:33:44:55:66:77:88:99
+                ccert_fingerprint=22:33:44:55:66:77:88:99:00
+                ccert_fingerprint=33:44:55:66:77:88:99:00:11
                 sender=@domain\.local$

client_address, rbl and rhsbl items may also be specified as whitespace-or-comma-separated values:

-        id=SKIP01; action=dunno; \
+        id=SKIP01; action=dunno
                 client_address=192.168.1.0/24, 172.16.254.23
-        id=SKIP02; action=dunno; \
-                client_address= 10.10.3.32       \
-                                10.216.222.0/27
+ id=SKIP02; action=dunno + client_address= 10.10.3.32 10.216.222.0/27

The following items must be unique:

         id, minimum and maximum values, rblcount and rhsblcount

Any item can be negated by preceeding '!!' to it, e.g.:

-        id=TLS001 ;  hostname=!!^secure\.trust\.local$ ;  action=REJECT only secure.trust.local please
+ id=HOST001 ; hostname == !!secure.trust.local ; action=REJECT only secure.trust.local please

or using the right compare operator:

-        id=USER01 ;  sasl_username !~ /^(bob|alice)$/ ;  action=REJECT who is that?
+ id=HOST001 ; hostname != secure.trust.local ; action=REJECT only secure.trust.local please

To avoid confusion with regexps or simply for better visibility you can use '!!(...)':

-        id=USER01 ;  sasl_username=!!( /^(bob|alice)$/ )  ;  action=REJECT who is that?
+ id=USER01 ; sasl_username =~ !!( /^(bob|alice)$/ ) ; action=REJECT who is that?

Request attributes can be compared by preceeding '$$' characters, e.g.:

         id=R-003 ;  client_name = !! $$helo_name      ;  action=WARN helo does not match DNS
@@ -354,6 +378,29 @@ Pattern matching is performed case insensitive.

id=R-003 ; client_name = !!($$(helo_name)) ; action=WARN helo does not match DNS

This is only valid for PCRE values (see list above). The comparison will be performed as case insensitive exact match. Use the '-vv' option to debug.

+

These special items will be reset for any new rule:

+
+        rblcount        - contains the number of RBL answers
+        rhsblcount      - contains the number of RHSBL answers
+        matches         - contains the number of matched items
+        dnsbltext       - contains the dns TXT part of all RBL and RHSBL replies in the form
+                          rbltype:rblname:<txt>; rbltype:rblname:<txt>; ...
+

These special items will be changed for any matching rule:

+
+        request_hits    - contains ids of all matching rules
+

This means that it might be necessary to save them, if you plan to use these values in later rules:

+
+        # set vals
+        id=RBL01 ; rhsblcount=all; rblcount=all
+                action=set(HIT_rhls=$$rhsblcount,HIT_rbls=$$rblcount,HIT_txt=$$dnsbltext)
+                rbl=list.dsbl.org, bl.spamcop.net, dnsbl.sorbs.net, zen.spamhaus.org
+                rhsbl_client=rddn.dnsbl.net.au, rhsbl.ahbl.org, rhsbl.sorbs.net
+                rhsbl_sender=rddn.dnsbl.net.au, rhsbl.ahbl.org, rhsbl.sorbs.net
+
+        # compare
+        id=RBL02 ; HIT_rhls>=1 ; HIT_rbls>=1 ; action=554 5.7.1 blocked using $$HIT_rhls RHSBLs and $$HIT_rbls RBLs [INFO: $$HIT_txt]
+        id=RBL03 ; HIT_rhls>=2               ; action=554 5.7.1 blocked using $$HIT_rhls RHSBLs [INFO: $$HIT_txt]
+        id=RBL04 ; HIT_rbls>=2               ; action=554 5.7.1 blocked using $$HIT_rbls RBLs [INFO: $$HIT_txt]

FILES

@@ -373,15 +420,15 @@ Use the '-vv' option to debug.

id=R001 ; ccert_fingerprint==table:/etc/postfwd/wl_ccerts ; action=DUNNO

This will ignore the right-hand value. Items can be mixed:

-        id=R002 ;  action=REJECT \
-                client_name==unknown; \
+        id=R002 ;  action=REJECT
+                client_name==unknown
                 client_name==file:/etc/postfwd/blacklisted

and for non pcre (comma separated) items:

-        id=R003 ;  action=REJECT \
+        id=R003 ;  action=REJECT
                 client_address==10.1.1.1, file:/etc/postfwd/blacklisted
-        id=R004 ;  action=REJECT \
+        id=R004 ;  action=REJECT
                 rbl=myrbl.home.local, zen.spamhaus.org, file:/etc/postfwd/rbls_changing

You can check your configuration with the --show_config option at the command line:

@@ -479,16 +526,16 @@ rule containing only an action statement:

please note that <action> is currently limited to postfix actions (no postfwd actions)! # no more than 3 requests per 5 minutes # from the same "unknown" client - id=RATE01 ; client_name==unknown ; \ - action==rate(client_address/3/300/450 4.7.1 sorry, max 3 requests per 5 minutes)
+ id=RATE01 ; client_name==unknown + action=rate(client_address/3/300/450 4.7.1 sorry, max 3 requests per 5 minutes)
         size (<item>/<max>/<time>/<action>)
         this command works similar to the rate() command with the difference, that the rate counter is
         increased by the request's size attribute. to do this reliably you should call postfwd2 from
         smtpd_end_of_data_restrictions. if you want to be sure, you could check it within the ruleset:
            # size limit 1.5mb per hour per client
-           id=SIZE01 ;  state==END_OF_DATA ;  client_address==!!(10.1.1.1); \
-              action==size(client_address/1572864/3600/450 4.7.1 sorry, max 1.5mb per hour)
+ id=SIZE01 ; protocol_state==END-OF-MESSAGE ; client_address==!!(10.1.1.1) + action=size(client_address/1572864/3600/450 4.7.1 sorry, max 1.5mb per hour)
         rcpt (<item>/<max>/<time>/<action>)
         this command works similar to the rate() command with the difference, that the rate counter is
@@ -496,8 +543,8 @@ rule containing only an action statement:

from smtpd_data_restrictions or smtpd_end_of_data_restrictions. if you want to be sure, you could check it within the ruleset: # recipient count limit 3 per hour per client - id=RCPT01 ; state==END_OF_DATA ; client_address==!!(10.1.1.1); \ - action==rcpt(client_address/3/3600/450 4.7.1 sorry, max 3 recipients per hour)
+ id=RCPT01 ; protocol_state==END-OF-MESSAGE ; client_address==!!(10.1.1.1) + action=rcpt(client_address/3/3600/450 4.7.1 sorry, max 3 recipients per hour)
         ask (<addr>:<port>[:<ignore>])
         allows to delegate the policy decision to another policy service (e.g. postgrey). the first
@@ -508,6 +555,11 @@ rule containing only an action statement:

# example2: query postgrey but ignore it's answer, if it matches 'DUNNO' # and continue parsing postfwd's ruleset id=GREY; client_address==10.1.1.1; action=ask(127.0.0.1:10031:^dunno$)
+
+        mail(server/helo/from/to/subject/body)
+        Very basic mail command, that sends a message with the given arguments. LIMITATIONS:
+        This basically performs a telnet. No authentication or TLS are available. Additionally it does
+        not track notification state and will notify you any time, the corresponding rule hits.
         wait (<delay>)
         pauses the program execution for <delay> seconds. use this for
@@ -515,7 +567,7 @@ rule containing only an action statement:

         note (<string>)
         just logs the given string and continues parsing the ruleset.
-        if the string is empty, nothing will be logged.
+ if the string is empty, nothing will be logged (noop).
         quit (<code>)
         terminates the program with the given exit-code. postfix doesn`t
@@ -523,29 +575,6 @@ rule containing only an action statement:

You can reference to request attributes, like

         id=R-HELO ;  helo_name=^[^\.]+$ ;  action=REJECT invalid helo '$$helo_name'
-

These special attributes will be reset for any new rule:

-
-        rblcount        - contains the number of RBL answers
-        rhsblcount      - contains the number of RHSBL answers
-        matches         - contains the number of matched items
-        dnsbltext       - contains the dns TXT part of all RBL and RHSBL replies in the form
-                          rbltype:rblname:<txt>; rbltype:rblname:<txt>; ...
-

These special attributes will be changed for any matching rule:

-
-        request_hits    - contains ids of all matching rules
-

This means that it might be necessary to save them, if you plan to use these values in later rules:

-
-        # set vals
-        id=RBL01 ; rhsblcount=all ; rblcount=all ; \
-                rbl=list.dsbl.org, bl.spamcop.net, dnsbl.sorbs.net, zen.spamhaus.org ; \
-                rhsbl_client=rddn.dnsbl.net.au, rhsbl.ahbl.org, rhsbl.sorbs.net ; \
-                rhsbl_sender=rddn.dnsbl.net.au, rhsbl.ahbl.org, rhsbl.sorbs.net ; \
-                action=set(HIT_rhls=$$rhsblcount,HIT_rbls=$$rblcount,HIT_txt=$$dnsbltext)
-
-        # compare
-        id=RBL02 ; HIT_rhls>=1 ; HIT_rbls>=1 ; action=554 5.7.1 blocked using $$HIT_rhls RHSBLs and $$HIT_rbls RBLs [INFO: $$HIT_txt]
-        id=RBL03 ; HIT_rhls>=2               ; action=554 5.7.1 blocked using $$HIT_rhls RHSBLs [INFO: $$HIT_txt]
-        id=RBL04 ; HIT_rbls>=2               ; action=554 5.7.1 blocked using $$HIT_rbls RBLs [INFO: $$HIT_txt]

MACROS/ACLS

@@ -568,18 +597,18 @@ First the macros have to be defined as follows:

&&GONOW ; &&RBLS ; client_name=[\.-_](adsl|dynamic|ppp|)[\.-_]

Macros can contain macros, too:

-        # definition (note the trailing "\" characters)
-        &&RBLS {                                                \
-                rbl=zen.spamhaus.org ;                          \
-                rbl=list.dsbl.org ;                             \
-                rbl=bl.spamcop.net ;                            \
-                rbl=dnsbl.sorbs.net ;                           \
-                rbl=ix.dnsbl.manitu.net ;                       \
+        # definition
+        &&RBLS{
+                rbl=zen.spamhaus.org
+                rbl=list.dsbl.org
+                rbl=bl.spamcop.net
+                rbl=dnsbl.sorbs.net
+                rbl=ix.dnsbl.manitu.net
         };
-        &&DYNAMIC {                                             \
-                client_name=^unknown$ ;                         \
-                client_name=(\d+[\.-_]){4} ;                    \
-                client_name=[\.-_](adsl|dynamic|ppp|)[\.-_] ;   \
+        &&DYNAMIC{
+                client_name=^unknown$
+                client_name=(\d+[\.-_]){4}
+                client_name=[\.-_](adsl|dynamic|ppp|)[\.-_]
         };
         &&GOAWAY { &&RBLS; &&DYNAMIC; };
         # rules
@@ -588,7 +617,141 @@ First the macros have to be defined as follows:

PLUGINS

-

Please visit http://www.postfwd.org/postfwd.plugins

+

Description

+

The plugin interface allow you to define your own checks and enhance postfwd's +functionality. Feel free to share useful things!

+

Warning

+

Note that the plugin interface is still at devel stage. Please test your plugins +carefully, because errors may cause postfwd to break! It is also +allowed to override attributes or built-in functions, but be sure that you know +what you do because some of them are used internally.

+

Please keep security in mind, when you access sensible ressources and never, ever +run postfwd as privileged user! Also never trust your input (especially hostnames, +and e-mail addresses).

+

ITEMS

+

Item plugins are perl subroutines which integrate additional attributes to requests +before they are evaluated against postfwd's ruleset like any other item of the +policy delegation protocol. This allows you to create your own checks.

+

plugin-items can not be used selective. these functions will be executed for every +request postfwd receives, so keep performance in mind.

+
+        SYNOPSIS: %result = postfwd_items_plugin{<name>}(%request)
+

means that your subroutine, called <name>, has access to a hash called %request, +which contains all request attributes, like $request{client_name} and must +return a value in the following form:

+
+        save: $result{<item>} = <value>
+

this creates the new item <item> containing <value>, which will be integrated in +the policy delegation request and therefore may be used in postfwd's ruleset.

+
+        # do NOT remove the next line
+        %postfwd_items_plugin = (
+
+                # EXAMPLES - integrated in postfwd. no need to activate them here.
+                
+                        # allows to check postfwd version in ruleset
+                        "version" => sub {
+                                my(%request) = @_;
+                                my(%result) = (
+                                        "version" => $NAME." ".$VERSION,
+                                );
+                                return %result;
+                        },
+                
+                        # sender_domain and recipient_domain
+                        "address_parts" => sub {
+                                my(%request) = @_;
+                                my(%result) = ();
+                                $request{sender} =~ /@([^@]*)$/;
+                                $result{sender_domain} = ($1 || '');
+                                $request{recipient} =~ /@([^@]*)$/;
+                                $result{recipient_domain} = ($1 || '');
+                                return %result;
+                        },
+
+        # do NOT remove the next line
+        );
+

COMPARE

+

Compare plugins allow you to define how your new items should be compared to the ruleset. +These are optional. If you don't specify one, the default (== for exact match, =~ for PCRE, ...) +will be used.

+
+        SYNOPSIS:  <item> => sub { return &{$postfwd_compare{<type>}}(@_); },
+
+        # do NOT remove the next line
+        %postfwd_compare_plugin = (
+
+                EXAMPLES - integrated in postfwd. no need to activate them here.
+        
+                        # Simple example
+                        # SYNOPSIS:  <result> = <item> (return &{$postfwd_compare{<type>}}(@_))
+                        "client_address"  => sub { return &{$postfwd_compare{cidr}}(@_); },
+                        "size"            => sub { return &{$postfwd_compare{numeric}}(@_); },
+                        "recipient_count" => sub { return &{$postfwd_compare{numeric}}(@_); },
+        
+                        # Complex example
+                        # SYNOPSIS:  <result> = <item>(<operator>, <ruleset value>, <request value>, <request>)
+                        "numeric" => sub {
+                                my($cmp,$val,$myitem,%request) = @_;
+                                my($myresult) = undef;  $myitem ||= "0"; $val ||= "0";
+                                if ($cmp eq '==') {
+                                        $myresult = ($myitem == $val);
+                                } elsif ($cmp eq '=<') {
+                                        $myresult = ($myitem <= $val);
+                                } elsif ($cmp eq '=>') {
+                                        $myresult = ($myitem >= $val);
+                                } elsif ($cmp eq '!=') {
+                                        $myresult = not($myitem == $val);
+                                } elsif ($cmp eq '!<') {
+                                        $myresult = not($myitem <= $val);
+                                } elsif ($cmp eq '!>') {
+                                        $myresult = not($myitem >= $val);
+                                } else {
+                                        $myresult = ($myitem >= $val);
+                                };
+                                return $myresult;
+                        },
+
+        # do NOT remove the next line
+        );
+

ACTIONS

+

Action plugins allow to define new postfwd actions. By setting the $stop-flag you can decide to +continue or to stop parsing the ruleset.

+
+        SYNOPSIS:  (<stop rule parsing>, <next rule index>, <return action>, <logprefix>, <request>) =
+                        <action> (<current rule index>, <current time>, <command name>, <argument>, <logprefix>, <request>)
+
+        # do NOT remove the next line
+        %postfwd_actions_plugin = (
+
+                # EXAMPLES - integrated in postfwd. no need to activate them here.
+        
+                        # note(<logstring>) command
+                        "note"  => sub {
+                                my($index,$now,$mycmd,$myarg,$myline,%request) = @_;
+                                my($myaction) = $default_action; my($stop) = 0;
+                                mylogs 'info', "[RULES] ".$myline." - note: ".$myarg if $myarg;
+                                return ($stop,$index,$myaction,$myline,%request);
+                        },
+        
+                        # skips next <myarg> rules
+                        "skip" => sub {
+                                my($index,$now,$mycmd,$myarg,$myline,%request) = @_;
+                                my($myaction) = $default_action; my($stop) = 0;
+                                $index += $myarg if ( $myarg and not(($index + $myarg) > $#Rules) );
+                                return ($stop,$index,$myaction,$myline,%request);
+                        },
+        
+                        # dumps current request contents to syslog
+                        "dumprequest" => sub {
+                                my($index,$now,$mycmd,$myarg,$myline,%request) = @_;
+                                my($myaction) = $default_action; my($stop) = 0;
+                                map { mylogs 'info', "[DUMP] rule=$index, Attribute: $_=$request{$_}" } (keys %request);
+                                return ($stop,$index,$myaction,$myline,%request);
+                        },
+
+        # do NOT remove the next line
+        );

COMMAND LINE

@@ -603,18 +766,13 @@ that at least one of the following is required for postfwd2 to work.

-r, --rule <rule> Adds <rule> to ruleset. Remember that you might have to quote strings that contain whitespaces or shell characters.
-

Plugins

-
-        --plugins
-        A file containing plugin routines for postfwd. Please see the
-        PLUGINS section for more information.

Scoring

         -s, --scores <val>=<action>
         Returns <action> to postfix, when the request's score exceeds <val>

Multiple usage is allowed. Just chain your arguments, like:

-        postfwd2 -r "<item>=<value>;action=<result>" -f <file> -f <file> --plugins <file> ...
+        postfwd2 -r "<item>=<value>;action=<result>" -f <file> -f <file> ...
           or
         postfwd2 --scores 4.5="WARN high score" --scores 5.0="REJECT postfwd2 score too high" ...

In case of multiple scores, the highest match will count. The order of the arguments will be @@ -625,13 +783,13 @@ The following arguments will control it's behaviour in this case.

         -d, --daemon
         postfwd2 will run as daemon and listen on the network for incoming
-        queries (default 127.0.0.1:10040).
+ queries (default 127.0.0.1:10045).
         -i, --interface <dev>
         Bind postfwd2 to the specified interface (default 127.0.0.1).
         -p, --port <port>
-        postfwd2 listens on the specified port (default tcp/10040).
+ postfwd2 listens on the specified port (default tcp/10045).
         --proto <type>
         The protocol type for postfwd's socket. Currently you may use 'tcp' or 'unix' here.
@@ -657,10 +815,17 @@ The following arguments will control it's behaviour in this case.

         -R, --chroot <path>
         Chroot the process to the specified path.
-        Test this before using - you might need some libs there.
+ Please look at http://postfwd.org/postfwd2-chroot.html before use!
         --pidfile <path>
         The process id will be saved in the specified file.
+
+        --facility <f>
+        sets the syslog facility, default is 'mail'
+
+        --socktype <s>
+        sets the Sys::Syslog socktype to 'native', 'inet' or 'unix'.
+        Default is to auto-detect this depening on module version and os.
         -l, --logname <label>
         Labels the syslog messages. Useful when running multiple
@@ -668,6 +833,11 @@ The following arguments will control it's behaviour in this case.

         --loglen <int>
         Truncates any syslog message after <int> characters.
+

Plugins

+
+        --plugins <file>
+        Loads postfwd plugins from file. Please see http://postfwd.org/postfwd.plugins
+        or the plugins.postfwd.sample that is available from the tarball for more info.

Optional arguments

These parameters influence the way postfwd2 is working. Any of them can be combined.

@@ -794,7 +964,22 @@ The following arguments will control it's behaviour in this case.

timeout in seconds to parse a single configuration line. if exceeded, the rule will be skipped. this is used to prevent problems due to large files or loops. -I<Informational arguments>
+ --keep_rates (default=0) + With this option set postfwd2 does not clear the rate limit counters on reload. Please + note that you have to restart (not reload) postfwd with this option if you change + any rate limit rules.
+
+        --save_rates    (default=none)
+        With this option postfwd saves existing rate limit counters to disk and reloads them
+        on program start. This allows persistent rate limits across program restarts or reboots.
+        Please note that postfwd needs read and write access to the specified file.
+
+        --fast_limit_evaluation    (default=0)
+        Once a ratelimit was set by the ruleset, future requests will be evaluated against it
+        before consulting the ruleset. This mode was the default behaviour until v1.30.
+        With this mode rate limits will be faster, but also eventually set up
+        whitelisting-rules within the ruleset might not work as expected.
+

Informational arguments

These arguments are for command line usage only. Never ever use them with postfix!

         -C, --showconfig
@@ -815,6 +1000,26 @@ I<Informational arguments>
-P, --perfmon This option turns of any syslogging and output. It is included for performance testing. +
+        --dumpstats
+        Displays program usage statistics.
+
+        --dumpcache
+        Displays cache contents.
+
+        --delcache <item>
+        Removes an item from the request cache. Use --dumpcache to identify objects.
+        E.g.:
+                # postfwd --dumpcache
+                ...
+                %rate_cache -> %sender=gmato@jqvo.org -> %RATE002+2_600 -> @count    -> '1'
+                %rate_cache -> %sender=gmato@jqvo.org -> %RATE002+2_600 -> @maxcount -> '2'
+                ...
+                # postfwd --delrate="sender=gmato@jqvo.org"
+                rate cache item 'sender=gmato@jqvo.org' removed
+
+        --delrate <item>
+        Removes an item from the rate cache. Use --dumpcache to identify objects.

REFRESH

@@ -854,18 +1059,25 @@ the '-I' switch to have your configuration refreshed for every request postfwd2 # 1. 30MB for systems in *.customer1.tld # 2. 20MB for SASL user joejob # 3. 10MB default - id=SZ001; state==END-OF-MESSAGE; action=DUNNO; size<=30000000 ; client_name=\.customer1.tld$ - id=SZ002; state==END-OF-MESSAGE; action=DUNNO; size<=20000000 ; sasl_username==joejob - id=SZ002; state==END-OF-MESSAGE; action=DUNNO; size<=10000000 - id=SZ100; state==END-OF-MESSAGE; action=REJECT message too large + id=SZ001; protocol_state==END-OF-MESSAGE; action=DUNNO; size<=30000000 ; client_name=\.customer1.tld$ + id=SZ002; protocol_state==END-OF-MESSAGE; action=DUNNO; size<=20000000 ; sasl_username==joejob + id=SZ002; protocol_state==END-OF-MESSAGE; action=DUNNO; size<=10000000 + id=SZ100; protocol_state==END-OF-MESSAGE; action=REJECT message too large
         ## Selective Greylisting
+        ##
+        ## Note that postfwd does not include greylisting. This setup requires a running postgrey service
+        ## at port 10031 and the following postfix restriction class in your main.cf:
+        ##
+        ##      smtpd_restriction_classes = check_postgrey, ...
+        ##      check_postgrey = check_policy_service inet:127.0.0.1:10031
+        #
         # 1. if listed on zen.spamhaus.org with results 127.0.0.10 or .11, dns cache timeout 1200s
         # 2. Client has no rDNS
         # 3. Client comes from several dialin domains
-        id=GR001; action=greylisting ; rbl=dul.dnsbl.sorbs.net, zen.spamhaus.org/127.0.0.1[01]/1200
-        id=GR002; action=greylisting ; client_name=^unknown$
-        id=GR003; action=greylisting ; client_name=\.(t-ipconnect|alicedsl|ish)\.de$
+ id=GR001; action=check_postgrey ; rbl=dul.dnsbl.sorbs.net, zen.spamhaus.org/127.0.0.1[01]/1200 + id=GR002; action=check_postgrey ; client_name=^unknown$ + id=GR003; action=check_postgrey ; client_name=\.(t-ipconnect|alicedsl|ish)\.de$
         ## Date Time
         date=24.12.2007-26.12.2007          ;  action=450 4.7.1 office closed during christmas
@@ -873,7 +1085,7 @@ the '-I' switch to have your configuration refreshed for every request postfwd2
         time=-07:00:00 ;  sasl_username=jim ;  action=450 4.7.1 to early for you, jim
         time=22:00:00- ;  sasl_username=jim ;  action=450 4.7.1 to late now, jim
         months=-Apr                         ;  action=450 4.7.1 see you in may
-        days=!!Mon-Fri                      ;  action=greylist
+ days=!!Mon-Fri ; action=check_postgrey
         ## Usage of jump
         # The following allows a message size of 30MB for different
@@ -883,8 +1095,8 @@ the '-I' switch to have your configuration refreshed for every request postfwd2
         id=R003 ; action=jump(R100) ; ccert_fingerprint=AA:BB:CC:DD:...
         id=R004 ; action=jump(R100) ; ccert_fingerprint=AF:BE:CD:DC:...
         id=R005 ; action=jump(R100) ; ccert_fingerprint=DD:CC:BB:DD:...
-        id=R099 ; state==END-OF-MESSAGE; action=REJECT message too big (max. 10MB); size=10000000
-        id=R100 ; state==END-OF-MESSAGE; action=REJECT message too big (max. 30MB); size=30000000
+ id=R099 ; protocol_state==END-OF-MESSAGE; action=REJECT message too big (max. 10MB); size=10000000 + id=R100 ; protocol_state==END-OF-MESSAGE; action=REJECT message too big (max. 30MB); size=30000000
         ## Usage of score
         # The following rejects a mail, if the client
@@ -892,8 +1104,8 @@ the '-I' switch to have your configuration refreshed for every request postfwd2
         # - is listed in 1 RBL or 1 RHSBL and has no correct rDNS
         # - other clients without correct rDNS will be greylist-checked
         # - some whitelists are used to lower the score
-        id=S01 ; score=2.6              ; action=greylisting
-        id=S02 ; score=5.0              ; action=REJECT postfwd2 score too high
+        id=S01 ; score=2.6              ; action=check_postgrey
+        id=S02 ; score=5.0              ; action=REJECT postfwd score too high
         id=R00 ; action=score(-1.0)     ; rbl=exemptions.ahbl.org,list.dnswl.org,query.bondedsender.org,spf.trusted-forwarder.org
         id=R01 ; action=score(2.5)      ; rbl=bl.spamcop.net, list.dsbl.org, dnsbl.sorbs.net
         id=R02 ; action=score(2.5)      ; rhsbl=rhsbl.ahbl.org, rhsbl.sorbs.net
@@ -905,10 +1117,10 @@ the '-I' switch to have your configuration refreshed for every request postfwd2
         # The following temporary rejects requests from "unknown" clients, if they
         # 1. exceeded 30 requests per hour or
         # 2. tried to send more than 1.5mb within 10 minutes
-        id=RATE01 ;  client_name==unknown ;  state==RCPT ; \
-                action==rate(client_address/30/3600/450 4.7.1 sorry, max 30 requests per hour)
-        id=SIZE01 ;  client_name==unknown ;  state==END_OF_DATA ; \
-                action==size(client_address/1572864/600/450 4.7.1 sorry, max 1.5mb per 10 minutes)
+ id=RATE01 ; client_name==unknown ; protocol_state==RCPT + action=rate(client_address/30/3600/450 4.7.1 sorry, max 30 requests per hour) + id=SIZE01 ; client_name==unknown ; protocol_state==END-OF-MESSAGE + action=size(client_address/1572864/600/450 4.7.1 sorry, max 1.5mb per 10 minutes)
         ## Macros
         # definition
@@ -921,34 +1133,34 @@ the '-I' switch to have your configuration refreshed for every request postfwd2
 
         ## Groups
         # definition
-        &&RBLS { \
-                rbl=zen.spamhaus.org ;          \
-                rbl=list.dsbl.org ;             \
-                rbl=bl.spamcop.net ;            \
-                rbl=dnsbl.sorbs.net ;           \
-                rbl=ix.dnsbl.manitu.net ;       \
+        &&RBLS{
+                rbl=zen.spamhaus.org
+                rbl=list.dsbl.org
+                rbl=bl.spamcop.net
+                rbl=dnsbl.sorbs.net
+                rbl=ix.dnsbl.manitu.net
         };
-        &&RHSBLS { \
+        &&RHSBLS{
                 ...
         };
-        &&DYNAMIC { \
-                client_name==unknown ;                          \
-                client_name~=(\d+[\.-_]){4} ;                   \
-                client_name~=[\.-_](adsl|dynamic|ppp|)[\.-_] ;  \
+        &&DYNAMIC{
+                client_name==unknown
+                client_name~=(\d+[\.-_]){4}
+                client_name~=[\.-_](adsl|dynamic|ppp|)[\.-_]
                 ...
         };
-        &&BAD_HELO { \
-                helo_name==my.name.tld;         \
-                helo_name~=^([^\.]+)$;          \
-                helo_name~=\.(local|lan)$;      \
+        &&BAD_HELO{
+                helo_name==my.name.tld
+                helo_name~=^([^\.]+)$
+                helo_name~=\.(local|lan)$
                 ...
         };
-        &&MAINTENANCE { \
-                date=15.01.2007 ; \
-                date=15.04.2007 ; \
-                date=15.07.2007 ; \
-                date=15.10.2007 ; \
-                time=03:00:00 - 04:00:00 ; \
+        &&MAINTENANCE{
+                date=15.01.2007
+                date=15.04.2007
+                date=15.07.2007
+                date=15.10.2007
+                time=03:00:00 - 04:00:00
         };
         # rules
         id=COMBINED    ;  &&RBLS ;  &&DYNAMIC ;  action=REJECT dynamic client and listed on RBL
@@ -965,7 +1177,7 @@ the '-I' switch to have your configuration refreshed for every request postfwd2
 
         ## combined with enhanced rbl features
         #
-        id=RBL01 ; rhsblcount=all ; rblcount=all ; &&RBLS ; &&RHSBLS ; \
+        id=RBL01 ; rhsblcount=all ; rblcount=all ; &&RBLS ; &&RHSBLS
              action=set(HIT_dnsbls=$$rhsblcount,HIT_dnsbls+=$$rblcount,HIT_dnstxt=$$dnsbltext)
         id=RBL02 ; HIT_dnsbls>=2  ; action=554 5.7.1 blocked using $$HIT_dnsbls DNSBLs [INFO: $$HIT_dnstxt]

@@ -1068,21 +1280,21 @@ place a last catch-all rule to change that behaviour:

postfwd2 will spawn multiple child processes which communicate with a parent cache. This is the prefered way to use postfwd2 in high volume environments. Start postfwd2 with the following parameters:

-        postfwd2 -d -f /etc/postfwd.cf -i 127.0.0.1 -p 10040 -u nobody -g nobody -S
+ postfwd2 -d -f /etc/postfwd.cf -i 127.0.0.1 -p 10045 -u nobody -g nobody -S

For efficient caching you should check if you can use the options --cacheid, --cache-rdomain-only, --cache-no-sender and --cache-no-size.

Now check your syslogs (default facility ``mail'') for a line like:

         Aug  9 23:00:24 mail postfwd[5158]: postfwd2 n.nn ready for input
-

and use `netstat -an|grep 10040` to check for something like

+

and use `netstat -an|grep 10045` to check for something like

-        tcp  0  0  127.0.0.1:10040  0.0.0.0:*  LISTEN
+ tcp 0 0 127.0.0.1:10045 0.0.0.0:* LISTEN

If everything works, open your postfix main.cf and insert the following

-        127.0.0.1:10040_time_limit      = 3600                                          <--- integration
+        127.0.0.1:10045_time_limit      = 3600                                          <--- integration
         smtpd_recipient_restrictions    = permit_mynetworks                             <--- recommended
                                           reject_unauth_destination                     <--- recommended
-                                          check_policy_service inet:127.0.0.1:10040     <--- integration
+ check_policy_service inet:127.0.0.1:10045 <--- integration

Reload your configuration with `postfix reload` and watch your logs. In it works you should see lines like the following in your mail log:

@@ -1098,9 +1310,9 @@ tables. First create a file /etc/postfix/policy containing:

         # Restriction Classes
         smtpd_restriction_classes       = postfwdcheck, <some more>...                          <--- integration
-        postfwdcheck                    = check_policy_service inet:127.0.0.1:10040             <--- integration
+ postfwdcheck = check_policy_service inet:127.0.0.1:10045 <--- integration
-        127.0.0.1:10040_time_limit      = 3600                                                  <--- integration
+        127.0.0.1:10045_time_limit      = 3600                                                  <--- integration
         smtpd_recipient_restrictions    = permit_mynetworks,                                    <--- recommended
                                           reject_unauth_destination,                            <--- recommended
                                           ...                                                   <--- optional
@@ -1122,7 +1334,7 @@ Simply change it to meet your requirements and use

action=<whateveryouconfigured>

For network tests I use netcat:

-        nc 127.0.0.1 10040 <request.sample
+ nc 127.0.0.1 10045 <request.sample

to send a request to postfwd. If you receive nothing, make sure that postfwd2 is running and listening on the specified network settings.

diff --git a/doc/postfwd2.txt b/doc/postfwd2.txt index 90e4b8d..be5c72c 100644 --- a/doc/postfwd2.txt +++ b/doc/postfwd2.txt @@ -38,7 +38,7 @@ SYNOPSIS --cache-no-size skip size for cache-id --no_parent_request_cache disable parent request cache --no_parent_rate_cache disable parent rate cache - --no_parent_dns_cache disable parent dns cache + --no_parent_dns_cache disable parent dns cache (default) --no_parent_cache disable all parent caches Rates: @@ -53,6 +53,9 @@ SYNOPSIS --daemons list of daemons to start --dumpcache show cache contents --dumpstats show statistics + -R, --chroot chroot to before start + --delcache removes an item from the request cache + --delrate removes an item from the rate cache DNS: -n, --nodns skip any dns based test @@ -73,10 +76,17 @@ SYNOPSIS --norulestats disables per rule statistics -I, --instantcfg reloads ruleset on every new request --config_timeout parser timeout in seconds + --keep_rates do not clear rate limit counters on reload + --save_rates save and load rate limits on disk + --fast_limit_evaluation evaluate rate limits before ruleset is parsed + + Plugins: + --plugins loads postfwd plugins from file Logging: -l, --logname

postfwd quickstart guide

+
To use postfwd you have to perform the following steps: +

+
    +
  1. Get postfwd or postfwd2 +
  2. Create your own postfwd ruleset +
  3. Optional: Create a dedicated user/group for postfwd +
  4. Launch postfwd +
  5. Tell postfix to use postfwd +
  6. Finished! How to go on? +
+ +
    +
  1. Get postfwd or postfwd2 +
    You may skip this step, if your operating system distribution contains a version of postfwd, but it is recommended to use a recent version from postfwd.org. It is also recommended to use recent versions of the perl modules Net::DNS and Net::Server (see required perl modules for more information). + +


  2. Create your own postfwd ruleset +
    postfwd is not a dedicated antispam tool (although it may be used as such). Instead of that it is basically a restriction language for postfix which allows to place complex policy expressions into a simple ruleset. For reasonable operation you have to create your own ruleset, like: + +

    +	# reject @domain.local if request comes from outside 10.0.0.0/8 network
    +	id=RULE-01 ;  sender_domain=domain.local ;  client_address=!!(10.0.0.0/8) ;  action=REJECT not allowed
    +
    +	# reject if sender equals recipient
    +	id=RULE-02 ;  sender==$$recipient ;  action=REJECT not allowed
    +
    +	# check some rbls and reject, if listed on >= 2 of them
    +	id=RULE-03 ;  rbl=zen.spamhaus.org,bl.spamcop.net,ix.dnsbl.manitu.net ;  rblcount>=2 ;  action=REJECT not allowed 
    + + Now save these rules to a file (e.g. /etc/postfwd.cf). Please note that these are just very basic examples. Please read the documentation for more information on postfwd's capabilities. To check your ruleset you should use the "-C" command line option. This displays postfwd's view of your ruleset, like: + +

    +	# postfwd -f /etc/postfwd.cf -C
    +	  Rule   0: id->"RULE-01"; action->"REJECT not allowed"; sender_domain->"=;domain.local"; client_address->"=;!!(10.0.0.0/8)"
    +	  Rule   1: id->"RULE-02"; action->"REJECT not allowed"; sender->"==;$$recipient"
    +	  Rule   2: id->"RULE-03"; action->"REJECT not allowed"; rblcount->"2"; rbl->"=;zen.spamhaus.org, =;bl.spamcop.net, =;ix.dnsbl.manitu.net" 
    + + If you just want to see that anything works a single rule like "id=DEFAULT; action=dunno" is fine, too. + +


  3. Optional: Create a dedicated user/group for postfwd +
    By default postfwd will try to use user 'nobody' and group 'nobody'. So it should be safe to skip this step in most environments. If you run a system that is exposed to dangerous networks and feel paranoid you may want to create a dedicated user and group for the postfwd process. On unix systems enter: + +

    +	# groupadd postfwd
    +	# useradd -g postfwd -d /var/empty -s /bin/false -c "postfwd daemon user" postfwd
    +	# passwd -l postfwd 
    + +
  4. Launch postfwd +
    Start postfwd with your ruleset. Leave out the --user and --group options, if you have skipped step 3 and want to run postfwd as nobody/nobody. + +

    +	# postfwd --daemon -f /etc/postfwd.cf -u postfwd -g postfwd 
    + + Now watch your logs (default facility: mail) for lines like: + +

    +	Jun  8 12:14:33 jupiter postfwd[20270]: postfwd 1.11 starting
    +	Jun  8 12:14:33 jupiter postfwd[20271]: Process Backgrounded
    +	Jun  8 12:14:33 jupiter postfwd[20271]: 2009/06/08-12:14:33 postfwd (type Net::Server::Multiplex) starting! pid(20271)
    +	Jun  8 12:14:33 jupiter postfwd[20271]: Binding to TCP port 10040 on host 127.0.0.1
    +	Jun  8 12:14:33 jupiter postfwd[20271]: Setting gid to "1003 1003"
    +	Jun  8 12:14:33 jupiter postfwd[20271]: Setting uid to "1010"
    +	Jun  8 12:14:33 jupiter postfwd[20271]: postfwd 1.11 ready for input 
    + + To control further daemon operations the commands `postfwd --kill` and `postfwd --reload` may be used. Please see `postfwd -h` and the documentation for more information. + +


  5. Tell postfix to use postfwd +
    Open your main.cf (usually located at /etc/postfix) and find or add a line starting with: + +

    +	smtpd_recipient_restrictions = ... 

    + + To place the postfwd check here, modify this as follows: + +

    +	# note the leading whitespaces from the 2nd line!
    +	smtpd_recipient_restrictions = permit_mynetworks,	# recommended
    +		...,						# optional
    +		reject_unauth_destination,			# recommended
    +		check_policy_service inet:127.0.0.1:10040,	# **postfwd integration**
    +		...						# optional 
    + + Please note that for some checks (like the 'size' attribute) postfwd has to be integrated at another level of the smtp transaction (smtpd_end_of_data_restrictions). More information on that can be found in the postfix documentation. + +


  6. Finished! How to go on? +
    A good point to start is postfwd's manual. You should be able to view it using the `postfwd -m` command or visit the documentation page. There are also some configuration examples on the webpage. Another very useful source of information is the Postfix SMTP Access Policy Delegation documentation. +
    +
+ +

+

+ +
http://www.postfwd.org/ + 2007 - 2009 by Jan Peter Kessler + info (AT) postfwd (DOT) org +
+
+

+ + + diff --git a/doc/versions.html b/doc/versions.html new file mode 100644 index 0000000..e1352e0 --- /dev/null +++ b/doc/versions.html @@ -0,0 +1,82 @@ + + + + +postfwd - version differences + + + + + + + + +

+

postfwd1 vs postfwd2


+As you might have noticed, there are two different versions of postfwd available - postfwd(1) and postfwd2. +Which version fits best for you depends on your setup. Both versions use the same ruleset parser*. They also share the basic command line arguments (use both with --help for details). This allows to switch easily between them. +

+The following table might help you to decide which version to use. Basically you should stick with postfwd1 for the moment unless you encounter performance issues with dns based checks or very complex rulesets with thousands +of checks. Please note that, due to implementation, rate limits are handled faster by postfwd1 at the moment. If performance really matters and you use a complex ruleset with rate limits and lots of dns based checks you should consider +running two instances at different ports/sockets: postfwd1 for the rate limits and postfwd2 for the rest. +

+ +

+ + + + + +
Version + postfwd1 + postfwd2 +
+
    Specs
+
+
    +
  • Single process (Multiplexer) +
  • Default port: tcp/10040 +
  • Small memory footprint +
+
+
    +
  • Multiple processes (Preforker) +
  • Default port: tcp/10045 +
  • Scales with multiple cpus/cores +
  • Builtin watchdog function +
  • Debug classes +
+
+
    Usage
+
+
    +
  • Fits for most setups +
  • Any single core system +
  • Rate-limit-only rulesets +
+
+
    +
  • High throughput setups with lots of requests per second and +
    +
      +
    • rulesets that use a lot of dnsbl lookups +
    • really huge rulesets containing tons of checks +
    +
+
+
    *Issues
+
+ +
    +
  • postfwd2 versions below 1.30 do not support multiple rate limits for the same item: +
    +# reject on 300+ connections/hour, warn at 200+
    +id=R01; client_address=1.2.3.4; action=rate(client_address/300/3600/REJECT state RED)
    +id=R02; client_address=1.2.3.4; action=rate(client_address/200/3600/WARN state YELLOW)
    +	
    +
+
+

+ + + diff --git a/etc/postfwd-old.cf.sample b/etc/postfwd-old.cf.sample new file mode 100644 index 0000000..7c28fa4 --- /dev/null +++ b/etc/postfwd-old.cf.sample @@ -0,0 +1,135 @@ + + +################################################################################################### +## +## ATTENTION: This example configuration uses features which require at least postfwd 1.10pre8! +## Please see the manual ('postfwd -m') for example syntax for prior versions. +## +## WARNING: Only provided to show some capabilities of postfwd. Do NOT use this without +## modifications to suit your environment! +## +################################################################################################### + + +## +## Definitions +## + +# Maintenance times +&&MAINTENANCE { \ + date=15.01.2007 ; \ + date=15.04.2007 ; \ + date=15.10.2007 - 17.10.2007 ; \ + time=03:00:00 - 04:00:00 ; \ +}; + +# Whitelists +&&TRUSTED_NETS { \ + client_address=192.168.1.0/22 ; \ + client_address=172.16.128.32/27 ; \ +}; +&&TRUSTED_HOSTS { \ + client_name~=\.domain1\.net$ ; \ + client_name~=\.domain2\.de$ ; \ +}; +&&TRUSTED_USERS { \ + sasl_username==bob ; \ + sasl_username==alice ; \ +}; +&&TRUSTED_TLS { \ + ccert_fingerprint==11:22:33:44:55:66:AA:BB:CC:DD:EE:FF ; \ + ccert_fingerprint==AA:BB:CC:DD:EE:FF:11:22:33:44:55:66 ; \ + encryption_keysize>=64 ; \ +}; +&&FREEMAIL { \ + client_name~=\.gmx\.net$ ; \ + client_name~=\.web\.de$ ; \ + client_name~=\.(aol|yahoo|h(ush|ot)mail)\.com$ ; \ +}; +&&STATIC { \ + # contains freemailers + &&FREEMAIL ; \ + client_name~=[\.\-]static[[\.\-] ; \ + client_name~=^(mail|smtp|mout|mx)[\-]*[0-9]*\. ; \ +}; +&&DNSWLS { \ + rbl=list.dnswl.org ; \ + rbl=exemptions.ahbl.org ; \ + rbl=query.bondedsender.org ; \ + rbl=hostkarma.junkemailfilter.com/^127\.0\.0\.1$/3600 ; \ + rhsbl_client=hostkarma.junkemailfilter.com/^127\.0\.0\.1$/3600 ; \ +}; + +# Spamchecks +&&BADHELO { \ + client_name==!!($$(helo_name)) ; \ +}; +&&DYNAMIC { \ + client_name==unknown ; \ + client_name~=(\-.+){4} ; \ + client_name~=\d{5} ; \ + client_name~=[_\.\-]([axt]{0,1}dsl|br(e|oa)dband|ppp|pppoe|dynamic|dynip|ADSL|dial(up|in)|pool|dhcp|leased)[_\.\-] ; \ +}; +&&DNSBLS { \ + rbl=zen.spamhaus.org ; \ + rbl=list.dsbl.org ; \ + rbl=bl.spamcop.net ; \ + rbl=dnsbl.sorbs.net ; \ + rbl=ix.dnsbl.manitu.net ; \ + rhsbl=rddn.dnsbl.net.au ; \ + rhsbl=rhsbl.ahbl.org ; \ + rhsbl=rhsbl.sorbs.net ; \ +}; + + +## +## Ruleset +## + +# temporary reject and drop connection during maintenance window +id=M_001 ; &&MAINTENANCE ; action=421 maintenance - please try again later + +# stress-friendly behaviour (will not match on postfix version pre 2.5) +id=STRESS ; stress==yes ; action=dunno + +# Whitelists +id=WL_001 ; &&TRUSTED_NETS ; action=dunno +id=WL_002 ; &&TRUSTED_HOSTS ; action=dunno +id=WL_003 ; &&TRUSTED_USERS ; action=dunno +id=WL_004 ; &&TRUSTED_TLS ; action=dunno + +# DNSWL checks - lookup +id=RWL_001 ; &&DNSWLS ; rhsblcount=all ; rblcount=all ; \ + action=set(HIT_dnswls=$$rhsblcount,HIT_dnswls+=$$rblcount,DSWL_text=$$dnsbltext) + +# DNSWL - whitelisting +id=RWL_002 ; HIT_dnswls>=2 ; action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] +id=RWL_003 ; HIT_dnswls>=1 ; action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] ; &&STATIC +id=RWL_004 ; HIT_dnswls>=1 ; action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] ; $$client_name~=$$(sender_domain)$ + +# DNSBL checks - lookup +id=RBL_001 ; &&DNSBLS ; rhsblcount=all ; rblcount=all ; \ + action=set(HIT_dnsbls=$$rhsblcount,HIT_dnsbls+=$$rblcount,DSBL_text=$$dnsbltext) + +# DNSBL checks - evaluation +id=RBL_002 ; HIT_dnsbls>=2 ; action=554 5.7.1 blocked using $$DSBL_count dnsbls, INFO: [$$DSBL_text] +id=RBL_003 ; HIT_dnsbls>=1 ; &&DYNAMIC ; action=REJECT listed on dnsbl and $$client_name looks like dynip, INFO: [$$DSBL_text] +id=RBL_004 ; HIT_dnsbls>=1 ; &&BADHELO ; action=REJECT listed on dnsbl and $$helo_name does not match $$client_name, INFO: [$$DSBL_text] + +# Rate limits +id=RATE_001 ; HIT_dnsbls>=1; \ + action=rate($$client_address/1/300/450 4.7.1 please do not try more than once per 5 minutes) +id=RATE_002 ; &&DYNAMIC ; \ + action=rate($$client_address/1/300/450 4.7.1 please do not try more than once per 5 minutes) + +# Selective greylisting +id=GREY_001 ; action=dunno ; &&STATIC +id=GREY_002 ; action=dunno ; $$client_name~=$$(sender_domain)$ +id=GREY_003 ; action=dunno ; HIT_dnswls>=1 +id=GREY_004 ; action=greylisting ; &&DYNAMIC +id=GREY_005 ; action=greylisting ; HIT_dnsbls>=1 + +# Greylisting should be safe during out-of-office times +id=GREY_006 ; action=greylisting ; days=Sat-Sun +id=GREY_007 ; action=greylisting ; days=Mon-Fri ; time=!!06:00:00-20:00:00 + diff --git a/etc/postfwd.cf.sample b/etc/postfwd.cf.sample index 4acd39a..a7136e5 100644 --- a/etc/postfwd.cf.sample +++ b/etc/postfwd.cf.sample @@ -2,8 +2,11 @@ ################################################################################################### ## -## ATTENTION: Do NOT use this configuration without your own customizations! -## Please see the manual ('postfwd -m') for more information. +## ATTENTION: This example configuration uses features which require at least postfwd 1.30! +## Please see the manual ('postfwd -m') for example syntax for prior versions. +## +## WARNING: Only provided to show some capabilities of postfwd. Do NOT use this without +## modifications to suit your environment! ## ################################################################################################### @@ -12,77 +15,71 @@ ## Definitions ## -# Greylisting with postgrey @ 127.0.0.1:10031 -&&GREYLIST { \ - action=ask(127.0.0.1:10031); \ -}; - # Maintenance times -&&MAINTENANCE { \ - date=15.01.2007 - 15.01.2007 ; \ - date=15.04.2007 - 15.04.2007 ; \ - date=15.07.2007 - 15.07.2007 ; \ - date=15.10.2007 - 15.10.2007 ; \ - time=03:00:00 - 04:00:00 ; \ -}; +&&MAINTENANCE { + date=15.01.2007 + date=15.10.2007 - 17.10.2007 + days=Sat-Sun + time=03:00:00 - 04:00:00 +} # Whitelists -&&TRUSTED_NETS { \ - client_address=192.168.1.0/22 ; \ - client_address=172.16.128.32/27 ; \ -}; -&&TRUSTED_HOSTS { \ - client_name~=\.domain1\.net$ ; \ - client_name~=\.domain2\.de$ ; \ -}; -&&TRUSTED_USERS { \ - sasl_username==bob ; \ - sasl_username==alice ; \ -}; -&&TRUSTED_TLS { \ - ccert_fingerprint==11:22:33:44:55:66:AA:BB:CC:DD:EE:FF ; \ - ccert_fingerprint==AA:BB:CC:DD:EE:FF:11:22:33:44:55:66 ; \ - encryption_keysize>=64 ; \ -}; -&&FREEMAIL { \ - client_name~=\.gmx\.net$ ; \ - client_name~=\.web\.de$ ; \ - client_name~=\.(aol|yahoo|h(ush|ot)mail)\.com$ ; \ -}; -&&STATIC { \ +&&TRUSTED_NETS { + client_address=192.168.1.0/22 + client_address=172.16.128.32/27 +} +&&TRUSTED_HOSTS { + client_name~=\.domain1\.net$ + client_name~=\.domain2\.de$ +} +&&TRUSTED_USERS { + sasl_username==bob + sasl_username==alice +} +&&TRUSTED_TLS { + ccert_fingerprint==11:22:33:44:55:66:AA:BB:CC:DD:EE:FF + ccert_fingerprint==AA:BB:CC:DD:EE:FF:11:22:33:44:55:66 + encryption_keysize>=64 +} +&&FREEMAIL { + client_name~=\.gmx\.net$ + client_name~=\.web\.de$ + client_name~=\.(aol|yahoo|h(ush|ot)mail)\.com$ +} +&&STATIC { # contains freemailers - &&FREEMAIL ; \ - client_name~=[\.\-]static[[\.\-] ; \ - client_name~=^(mail|smtp|mout|mx)[\-]*[0-9]*\. ; \ -}; -&&DNSWLS { \ - rbl=list.dnswl.org ; \ - rbl=exemptions.ahbl.org ; \ - rbl=query.bondedsender.org ; \ - rbl=hostkarma.junkemailfilter.com/^127\.0\.0\.1$/3600 ; \ - rhsbl_client=hostkarma.junkemailfilter.com/^127\.0\.0\.1$/3600 ; \ -}; + &&FREEMAIL + client_name~=[\.\-]static[[\.\-] + client_name~=^(mail|smtp|mout|mx)[\-]*[0-9]*\. +} +&&DNSWLS { + rbl=list.dnswl.org + rbl=exemptions.ahbl.org + rbl=query.bondedsender.org + rbl=hostkarma.junkemailfilter.com/^127\.0\.0\.1$/3600 + rhsbl_client=hostkarma.junkemailfilter.com/^127\.0\.0\.1$/3600 +} # Spamchecks -&&BADHELO { \ - client_name==!!($$(helo_name)) ; \ -}; -&&DYNAMIC { \ - client_name==unknown ; \ - client_name~=(\-.+){4} ; \ - client_name~=\d{5} ; \ - client_name~=[_\.\-]([axt]{0,1}dsl|br(e|oa)dband|ppp|pppoe|dynamic|dynip|ADSL|dial(up|in)|pool|dhcp|leased)[_\.\-] ; \ -}; -&&DNSBLS { \ - rbl=zen.spamhaus.org ; \ - rbl=list.dsbl.org ; \ - rbl=bl.spamcop.net ; \ - rbl=dnsbl.sorbs.net ; \ - rbl=ix.dnsbl.manitu.net ; \ - rhsbl=rddn.dnsbl.net.au ; \ - rhsbl=rhsbl.ahbl.org ; \ - rhsbl=rhsbl.sorbs.net ; \ -}; +&&BADHELO { + client_name==!!($$(helo_name)) +} +&&DYNAMIC { + client_name==unknown + client_name~=(\-.+){4} + client_name~=\d{5} + client_name~=[_\.\-]([axt]{0,1}dsl|br(e|oa)dband|ppp|pppoe|dynamic|dynip|ADSL|dial(up|in)|pool|dhcp|leased)[_\.\-] +} +&&DNSBLS { + rbl=zen.spamhaus.org + rbl=list.dsbl.org + rbl=bl.spamcop.net + rbl=dnsbl.sorbs.net + rbl=ix.dnsbl.manitu.net + rhsbl=rddn.dnsbl.net.au + rhsbl=rhsbl.ahbl.org + rhsbl=rhsbl.sorbs.net +} ## @@ -90,49 +87,96 @@ ## # temporary reject and drop connection during maintenance window -id=M_001 ; &&MAINTENANCE ; action=421 maintenance - please try again later +id=M_001 + &&MAINTENANCE + action=421 maintenance - please try again later # stress-friendly behaviour (will not match on postfix version pre 2.5) -id=STRESS ; stress==yes ; action=dunno +id=STRESS + stress==yes + action=dunno # Whitelists -id=WL_001 ; &&TRUSTED_NETS ; action=dunno -id=WL_002 ; &&TRUSTED_HOSTS ; action=dunno -id=WL_003 ; &&TRUSTED_USERS ; action=dunno -id=WL_004 ; &&TRUSTED_TLS ; action=dunno +id=WL_001 + &&TRUSTED_NETS + action=dunno +id=WL_002 + &&TRUSTED_HOSTS + action=dunno +id=WL_003 + &&TRUSTED_USERS + action=dunno +id=WL_004 + &&TRUSTED_TLS + action=dunno # DNSWL checks - lookup -id=RWL_001 ; &&DNSWLS ; rhsblcount=all ; rblcount=all ; \ +id=RWL_001 + &&DNSWLS + rhsblcount=all ; rblcount=all action=set(HIT_dnswls=$$rhsblcount,HIT_dnswls+=$$rblcount,DSWL_text=$$dnsbltext) # DNSWL - whitelisting -id=RWL_002 ; HIT_dnswls>=2 ; action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] -id=RWL_003 ; HIT_dnswls>=1 ; action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] ; &&STATIC -id=RWL_004 ; HIT_dnswls>=1 ; action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] ; $$client_name~=$$(sender_domain)$ +id=RWL_002 + HIT_dnswls>=2 + action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] +id=RWL_003 + HIT_dnswls>=1 + action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] ; &&STATIC +id=RWL_004 + HIT_dnswls>=1 + action=PREPEND X-PFW-STATE: INFO: [$$DSWL_text] ; $$client_name~=$$(sender_domain)$ # DNSBL checks - lookup -id=RBL_001 ; &&DNSBLS ; rhsblcount=all ; rblcount=all ; \ +id=RBL_001 + &&DNSBLS + rhsblcount=all ; rblcount=all action=set(HIT_dnsbls=$$rhsblcount,HIT_dnsbls+=$$rblcount,DSBL_text=$$dnsbltext) # DNSBL checks - evaluation -id=RBL_002 ; HIT_dnsbls>=2 ; action=554 5.7.1 blocked using $$DSBL_count dnsbls, INFO: [$$DSBL_text] -id=RBL_003 ; HIT_dnsbls>=1 ; &&DYNAMIC ; action=REJECT listed on dnsbl and $$client_name looks like dynip, INFO: [$$DSBL_text] -id=RBL_004 ; HIT_dnsbls>=1 ; &&BADHELO ; action=REJECT listed on dnsbl and $$helo_name does not match $$client_name, INFO: [$$DSBL_text] +id=RBL_002 + HIT_dnsbls>=2 + action=554 5.7.1 blocked using $$DSBL_count dnsbls, INFO: [$$DSBL_text] +id=RBL_003 + HIT_dnsbls>=1 + &&DYNAMIC + action=REJECT listed on dnsbl and $$client_name looks like dynip, INFO: [$$DSBL_text] +id=RBL_004 + HIT_dnsbls>=1 + &&BADHELO + action=REJECT listed on dnsbl and $$helo_name does not match $$client_name, INFO: [$$DSBL_text] # Rate limits -id=RATE_001 ; HIT_dnsbls>=1; \ +id=RATE_001 + HIT_dnsbls>=1 action=rate($$client_address/1/300/450 4.7.1 please do not try more than once per 5 minutes) -id=RATE_002 ; &&DYNAMIC ; \ +id=RATE_002 + &&DYNAMIC action=rate($$client_address/1/300/450 4.7.1 please do not try more than once per 5 minutes) # Selective greylisting -id=GREY_001 ; action=dunno ; &&STATIC -id=GREY_002 ; action=dunno ; $$client_name~=$$(sender_domain)$ -id=GREY_003 ; action=dunno ; HIT_dnswls>=1 -id=GREY_004 ; action=&&GREYLIST ; &&DYNAMIC -id=GREY_005 ; action=&&GREYLIST ; HIT_dnsbls>=1 +id=GREY_001 + action=dunno + &&STATIC +id=GREY_002 + action=dunno + $$client_name~=$$(sender_domain)$ +id=GREY_003 + action=dunno + HIT_dnswls>=1 +id=GREY_004 + action=greylisting + &&DYNAMIC +id=GREY_005 + action=greylisting + HIT_dnsbls>=1 # Greylisting should be safe during out-of-office times -id=GREY_006 ; action=&&GREYLIST ; days=Sat-Sun -id=GREY_007 ; action=&&GREYLIST ; days=Mon-Fri ; time=!!06:00:00-20:00:00 +id=GREY_006 + action=greylisting + days=Sat-Sun +id=GREY_007 + action=greylisting + days=Mon-Fri + time=!!06:00:00-20:00:00 diff --git a/man/man8/postfwd.8 b/man/man8/postfwd.8 index 4527675..814cb23 100644 --- a/man/man8/postfwd.8 +++ b/man/man8/postfwd.8 @@ -128,8 +128,8 @@ .rm #[ #] #H #V #F C .\" ======================================================================== .\" -.IX Title "POSTFWD 1" -.TH POSTFWD 1 "2010-11-14" "perl v5.8.5" "User Contributed Perl Documentation" +.IX Title "POSTFWD1-ALL-IN-ONE 1" +.TH POSTFWD1-ALL-IN-ONE 1 "2011-12-18" "perl v5.8.5" "User Contributed Perl Documentation" .SH "NAME" postfwd \- postfix firewall daemon .SH "SYNOPSIS" @@ -138,62 +138,82 @@ postfwd [\s-1OPTIONS\s0] [\s-1SOURCE1\s0, \s-1SOURCE2\s0, ...] .PP .Vb 3 \& Ruleset: (at least one, multiple use is allowed): -\& -f, --file reads rules from -\& -r, --rule adds to config +\& -f, --file reads rules from +\& -r, --rule adds to config .Ve .PP .Vb 2 \& Scoring: -\& -s, --scores = returns when score exceeds +\& -s, --scores = returns when score exceeds .Ve .PP -.Vb 12 +.Vb 8 +\& Control: +\& -d, --daemon run postfwd as daemon +\& -k, --kill stops daemon +\& --reload reloads configuration +\& --dumpstats displays usage statistics +\& --dumpcache displays cache contents +\& --delcache removes an item from the request cache +\& --delrate removes an item from the rate cache +.Ve +.PP +.Vb 13 \& Networking: -\& -d, --daemon run postfwd as daemon -\& -i, --interface listen on interface -\& -p, --port listen on port -\& --proto socket type (tcp or unix) -\& -u, --user set uid to user -\& -g, --group set gid to group -\& --umask set umask for file permissions -\& -R, --chroot chroot the daemon to -\& --pidfile create pidfile under -\& -l, --logname