Add prefix and suffix matching for strlist filter.
[apps/pfixtools.git] / example / postlicyd.conf
1 # POSTLICYD configuration
2 #
3 # Postlicyd configuration contains:
4 #  - a set of filter definition
5 #  - the entry point in the filters for each smtp states
6 #
7 # The configuration format use 2 types of data:
8 #   Token:  [[:alpha:]]([[:alnum:]_]*)
9 #   String: string format is a bit more complex. It can be one of the two following
10 #           format:
11 #       - C-like strings "[^\n\r]*". In this kind of string, the \ character is used to
12 #         escape any character \c = c (\n = n, \\ = \, ...). This format allow non-ascii
13 #         strings and string concatenation " abcd " "ef" = " abcd ef".
14 #       - ASCII-only strings can be written without double-quotes. They can be splitted
15 #         into several lines using shell-like escaping of EOL. A string begins and ends on
16 #         on a non-blank character. This king of string can not contain semi-colons.
17 # eg:
18 #  The following format are equivalent:
19 #   (1) this is a str\
20 #   (1)    ing
21 #
22 #   (2) "this is a string"
23 #
24 #   (3) "this " "is a "
25 #   (3) "string"
26 #
27 # Most of the configuration use a format:
28 #     Token = String ;
29 #
30 # When not in a string, spaces and line breaks are ignored. You can use comments
31 # everywhere out of a string. It starts with a '#' character and ends at the end of the
32 # line. Comments are strictly equivalents to white spaces.
33
34 # FILTER DEFINITION
35 #
36 # A definition of a filter contains:
37 #  - the name of the filter. This name MUST be uniq (non-uniq names can lead to undefined
38 #    behaviour)
39 #  - a type
40 #  - a list of type-specific parameters
41 #  - a list of hooks (on_hookname)
42 #
43 # Format:
44 #  A filter look likes that:
45 #
46 #  filter_name {
47 #    type = type_name;
48 #    param1 = parameter value 1;
49 #    ...
50 #    on_hook1 = action1;
51 #    on_hook2 = action2;
52 #    ...
53 #  }
54 #
55 # Hooks:
56 #   A filter can returns different values. Each return value is given a name. The
57 #   configuration associates an action to run to a return value name.
58 #
59 #   The action can be either a postfix access(5) value or a filter name. Postfix access
60 #   parameters must be prefixed by 'postfix:'.
61 #
62 # eg:
63 #   on_match = postfix:REJECT Blacklisted;
64 #
65 # Filter:
66 #   Current defined filter types are:
67 #     - iplist: match the client_address against one or more blacklist files from a rbl
68 #        Parameters:
69 #           - file: (no)?lock:weight:filename
70 #             declare a file to load. If lock is given, the klist is locked into the
71 #             RAM. The weight is a number giving the weight of this blaclist file in the
72 #             score of the IP
73 #           - soft_threshold: score (default: 1)
74 #             minimum score to match the soft_match return value
75 #           - hard_threshold: score (default: 1)
76 #             minimum score to match the hard_match return value
77 #        Return value:
78 #          The score of a query is the sum of the weight of the blacklist it matched.
79 #           - If the IP can not be parsed, returns error
80 #           - If the score is strictly greater >= than hard_threshold, returns hard_match
81 #           - If the score is strictly greater >= than soft_threshold, returns soft_match
82 #           - Else, returns fail
83
84 # Lookup in a rbl
85 spamhaus_and_abuseat {
86   type   = iplist;
87
88   # configuration
89   file   = lock:10:/var/spool/postlicyd/rbl.spamhaus.org;
90   file   = lock:1:/var/spool/postlicyd/cbl.abuseat.org;
91   soft_threshold = 1;
92   hard_threshold = 11;
93
94   # hooks
95   on_soft_match = greylist;
96   on_hard_match = postfix:REJECT optional text;
97   on_fail       = postfix:OK;
98   on_error      = postfix:DUNNO;
99 }
100
101
102 #     - strlist: match strings from the query against a list of list.
103 #        Parameters:
104 #           - file: (no)?lock:(partial-)?(pre|suf)fix:weight:filename
105 #             declare a file to load. If lock is given, the list is locked into the
106 #             RAM. Prefix/Suffix is a parameter to tell the matcher which is the most
107 #             efficient storage order. The strings are internally stored into a trie that
108 #             allow high compression if a lot of prefix are shared by several strings. If
109 #             you choose "prefix", string are stored in the natural order in memory and
110 #             prefix compression is performed. If you choose "suffix", strings are stored
111 #             in reverse order in memory and suffix compression is performed. If you add "partial-"
112 #             to the match order, the entry will match if the file contains a prefix (resp. suffix)
113 #             of the string. The weight is a number giving the weight of this list in the string score.
114 #               e.g.:
115 #                * a file that contains ".polytechnique.org" in "partial-suffix" mode will match
116 #                 all subdomains of "polytechnique.org".
117 #                * a file that contains "postmaster@" in "partial-prefix" mode will match all
118 #                 postmaster emails.
119 #                * a file open without "partial-" modifier match exact strings.
120 #           - soft_threshold: score (default: 1)
121 #             minimum score to match the soft_match return value
122 #           - hard_threshold: score (default: 1)
123 #             minimum score to match the hard_match return value
124 #           - fields: field_name(,field_name)*
125 #             list of field the match the string against.
126 #             currently only email OR hostname fields are supported. You MUST choose only
127 #             one of these types per strlist, and be carefull that the field you requested
128 #             are available in the protocol state you want to use this filter for.
129 #              * hostname fields: helo_name, client_name, reverse_client_name
130 #              * email fields: sender, recipient
131 #             No space is allowed in this parameter.
132 #        Return value:
133 #          The score of a query is the sum of the weight of the list it matched.
134 #           - If the score is strictly greater >= than hard_threshold, returns hard_match
135 #           - If the score is strictly greater >= than soft_threshold, returns soft_match
136 #           - Else, returns fail
137 #        State:
138 #           - to match helo_name, you must be on HELO state or later
139 #           (stmpd_helo_restrictions)
140 #           - to match sender, you must be on MAIL state or later
141 #           (smtpd_sender_restrictions)
142 #           - to match recipient, you must on RCPT state (stmpd_recipient_restrictions)
143 #           - client_name and reverse_client_name are always available
144
145 # Whitelist some clients
146 client_whitelist {
147   type  = strlist;
148
149   # configuration
150   file    = lock:1:suffix:/var/spool/postlicyd/client_whitelist;
151   fields  = client_name;
152
153   # hooks
154   on_hard_match = postfix:OK;
155   on_fail       = spamhaus_and_abuseat;
156 }
157
158
159 #     - greylist: greylister
160 #        Paramters:
161 #           - path: /my/path/ (required)
162 #             path where to store the greylist database
163 #           - prefix: name (default: "")
164 #             prefix to the name of the greylist database
165 #           - lookup_by_host: boolean (default: false)
166 #             perform lookup per host instead of domain.
167 #           - delay: number (default: 300)
168 #             number of seconds the client must wait before retrial.
169 #           - retry_window: (default: 2 * 24 * 3600)
170 #             number of seconds we wait for a retry.
171 #           - client_awl: number (default: 5)
172 #             number of successful greylisting before the client get whitelisted (0 means,
173 #             no-auto-whitelist).
174 #           - max_age: number (default: 30 * 3600)
175 #             lifetime of a greylist/whitelist session: ie, if a client does ne reappear during
176 #             max_age seconds, the entries associated to this client are invalidated.
177 #         Return value:
178 #           - if the client is whitelisted, returns whitelist
179 #           - if the client is greylisted, returns greylist
180 #           - if a error occured (not currently possible), returns error
181 #         State:
182 #           this filter is a recipient filter and works in RCPT state only
183 #           (smtpd_recipient_restrictions).
184
185 # Perform greylisting
186 greylist {
187   type   = greylist;
188
189   # configuration
190   path   = /var/spool/postlicyd/;
191   prefix = greylist_;
192
193   # hooks
194   on_greylist  = postfix:DEFER_IF_PERMIT optional text;
195   on_whitelist = postfix:OK;
196 }
197
198
199 #     - match: direct matching against the query fields
200 #        Parameters:
201 #           - match_all: boolean
202 #             if true, the filter won't match until all conditions
203 #             are verified. If false, the filter match on the first
204 #             verified condition.
205 #           - condition: field_name OP (value)
206 #             * the field_name is one of the field name of the query
207 #              emitted by postfix. This list with description of each
208 #              field is available at:
209 #               http://www.postfix.org/SMTPD_POLICY_README.html
210 #             * OP is an operator. Available operators are:
211 #                == field_name is strictly equal to value
212 #                =i field_name is case insensitively equal to value
213 #                != field_name is not equal to value
214 #                !i field_name is not case insensitively equal to value
215 #                >= field_name contains value
216 #                >i field_name contains case insensitively value
217 #                <= field_name is contained by value
218 #                <i field_name is contained case insensitively by value
219 #                #= field_name is empty or not set
220 #                #i field_name is not empty
221 #         Return value:
222 #           - if the conditions are verified (according to match_all strategy), return match
223 #           - if the conditions are not verified, return fail
224
225 # match one of the condition: "stress mode activated", "client_name contains debian.org" or
226 #                             "recipient is empty"
227 match {
228   type = match;
229
230   # configuration
231   match_all = false;
232   condition = stress == yes;
233   condition = client_name >= debian.org;
234   condition = recipient #=;
235
236   # hook
237   on_match = postfix:OK;
238   on_fail = greylist;
239 }
240
241
242 # ENTRY POINTS
243 #
244 # Access policy daemon can be used at several protocol states. For each of this states,
245 # you can define a different entry point in the filtering tree. This entry points have
246 # the following format:
247 #
248 #  state = filter_name;
249 #
250 # The filter_name MUST be one of the filter you previously defined.
251 #
252 # The available states are:
253 #  - client_filter: called on CONNECT state (smtpd_client_restrictions)
254 #  - helo_filter (or ehlo_filter): called on HELO/EHLO command (smtpd_helo_restrictions)
255 #  - sender_filter: called on the MAIL FROM command (stmpd_sender_restrictions)
256 #  - recipient_filter: called on the RCPT TO command (smtpd_recipient_restrictions)
257 #  - data_filter: called on the DATA command (smtpd_data_restrictions)
258 #  - end_of_data_filter: called on the END-OF-DATA command
259 #    (smtpd_end_of_data_restrictions)
260 #  - etrn_filter: called on the ETRN command (stmpd_etrn_restrictions)
261 #  - verify_filter: called on the VRFY command (no postfix hook ?)
262
263 recipient_filter = client_whitelist;
264
265
266 # SERVER PORT
267 #
268 # Port to which the server is bound. The default is 10000. If the port is specified as
269 # a command line parameter, the value specified on command line overides this value.
270 #
271 # You must RESTART the server to change the port (reload does not affect the port).
272
273 port = 10000;
274
275 # vim:set syntax=conf: