Mercurial > dnsbl
annotate xml/sample.conf @ 47:71252053d258
changes for 3.2
author | carl |
---|---|
date | Fri, 09 Jul 2004 08:33:59 -0700 |
parents | 6b79046b18c2 |
children | dca56b2de019 |
rev | line source |
---|---|
4 | 1 # $Id$ |
0 | 2 # |
3 # lines start with a command token, following by argument tokens | |
4 # tokens are separated by spaces or tabs | |
5 # | |
6 # | |
28 | 7 # tld: |
8 # second token is the tld suffix - com, net, org, etc | |
9 # | |
20 | 10 # content: |
11 # second token is the dns suffix used for the actual lookups | |
12 # third token? is a string enclosed in single quotes, so it | |
13 # is not really a token. This is the error message, with | |
14 # up to two %s parameters for the offending host name and | |
15 # client ip address respectively. | |
16 # | |
27
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
17 # host_limit: |
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
18 # second token is the integer count of the number of host names |
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
19 # or urls that are allowed in any one mail body. Zero is |
44 | 20 # unlimited. If the actual number of host names in the message |
21 # is larger than this limit, the message is rejected. | |
27
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
22 # third token? is a string enclosed in single quotes, so it |
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
23 # is not really a token. This is the error message supplied |
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
24 # to the smtp client. |
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
25 # |
44 | 26 # host_soft_limit: |
27 # second token is the integer count of the number of host names | |
28 # or urls that are checked in any one mail body. Zero is | |
29 # unlimited. If the actual number of host names in the message | |
30 # is larger than this limit, only a random selection of them | |
31 # are checked against the dnsbl. | |
32 # | |
24 | 33 # html_limit: |
27
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
34 # second token is the integer count of the number of bad html tags |
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
35 # that are allowed in any one mail body. Zero is unlimited. |
24 | 36 # third token? is a string enclosed in single quotes, so it |
37 # is not really a token. This is the error message supplied | |
38 # to the smtp client. | |
39 # | |
40 # html_tag: | |
41 # second token is a valid html tag, that is added to the list | |
42 # of valid tags. Any html tag seen in the mail bodies that | |
43 # that is not in this list is presumed to be invalid. | |
44 # | |
0 | 45 # dnsbl: |
46 # second token is the name of this dnsbl | |
47 # third token is the dns suffix used for the actual lookups | |
48 # fourth token? is a string enclosed in single quotes, so it | |
49 # is not really a token. This is the error message, with | |
50 # up to two %s parameters for the client ip address. | |
51 # | |
52 # dnsbl_list: | |
53 # second token is the name of this list of dnsbls | |
54 # subsequent tokes are the names of the previously defined dnsbls | |
55 # | |
56 # env_from: | |
57 # second token is the name of this envelope-from-map. There will | |
58 # generally be multiple lines with the same name. | |
59 # third token is the envelope from value from the smtp conversation, | |
60 # or just the domain part that follows the @ symbol. | |
61 # fourth token is BLACK, WHITE, or the name of a previously defined | |
62 # envelope-from-map. BLACK causes mail from this sender to be | |
63 # rejected with "no such user". WHITE causes mail to be accepted | |
64 # and the dns based lists are ignored. DEFAULT may be used to override | |
65 # the contents of other maps that are copied into this map, and | |
66 # set that sender back to the default (not white or black listed, | |
67 # and subject to dnsbl lookups). | |
68 # | |
69 # env_to: | |
70 # second token is the envelope recipient value from the smtp conversation, | |
71 # or just the domain part that follows the @ symbol. | |
72 # third token is the name of a dnsbl-list, or WHITE or BLACK. | |
73 # fourth token is the name of an envelope-from-map, or WHITE or BLACK. | |
74 # | |
75 # If either one is BLACK, mail to this recipient is rejected with | |
76 # "no such user", and the dns lists are not checked. | |
77 # | |
78 # If the envelope-from-map name is WHITE, mail to this recipient is accepted | |
79 # and the dns lists are not checked. | |
80 # | |
81 # If the envelope-from-map exists, the map is checked for the presence | |
82 # of the sender. A WHITE or BLACK answer is definitive and the dns lists | |
83 # are not checked. | |
84 # | |
85 # If the dnsbl-list name is WHITE, the dns lists are not checked and the | |
86 # mail is accepted. Otherwise, the dns lists are checked and the mail | |
87 # is rejected if any list has an A record for the standard dns based | |
88 # lookup scheme (reversed octets of the client followed by the dns suffix). | |
89 # | |
90 # | |
4 | 91 # include: |
92 # second token is the path name of the dnsbl milter config file to be | |
93 # included. | |
94 # | |
95 # | |
96 # include_dcc: | |
97 # second token is the name of an envelope-from-map (EMAP below). | |
98 # third token is the path name of the dcc whiteclnt config file to be | |
99 # included. | |
100 # entries from the dcc config are mapped as: | |
14 | 101 # ok -> WHITE |
102 # many -> BLACK | |
103 # env_from -> env_from EMAP xxx | |
104 # env_to -> env_to | |
105 # substitute mail_host -> env_from EMAP xxx | |
4 | 106 # |
0 | 107 # |
108 # | |
109 ############################################## | |
24 | 110 # content scanning parameters |
111 # | |
112 content sbl-xbl.spamhaus.org 'Mail containing %s rejected - sbl; see http://www.spamhaus.org/query/bl?ip=%s' | |
27
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
113 host_limit 20 'Mail containing too many host names rejected' |
44 | 114 host_soft_limit 20 |
27
43a4f6b3e668
add configurable host name limit and bad html tag limits.
carl
parents:
24
diff
changeset
|
115 html_limit 20 'Mail containing excessive bad html tags rejected' |
24 | 116 include html-tags.conf |
28 | 117 include tld.conf |
24 | 118 |
119 | |
120 ############################################## | |
0 | 121 # define the dnsbls to use |
122 # | |
123 dnsbl LOCAL blackholes.five-ten-sg.com 'Mail from %s rejected - local; see http://www.five-ten-sg.com/blackhole.php?%s' | |
124 dnsbl SPEWS blackholes.spews.org 'Mail from %s rejected - spews; see http://www.spews.org/ask.cgi?x=%s' | |
125 dnsbl SBL sbl-xbl.spamhaus.org 'Mail from %s rejected - sbl; see http://www.spamhaus.org/query/bl?ip=%s' | |
126 | |
127 | |
128 ############################################## | |
129 # define the (default and other) lists of dnsbls to use | |
130 # | |
131 dnsbl_list DEFAULT LOCAL SPEWS SBL | |
132 dnsbl_list SIMPLE SBL | |
133 dnsbl_list CUST1 SBL | |
134 dnsbl_list CUST2 SPEWS SBL | |
135 | |
136 | |
137 ############################################## | |
138 # define the (default and other) env_from maps | |
139 # | |
140 env_from DEFAULT spammer@example.com BLACK | |
141 env_from DEFAULT yahoo.com BLACK | |
142 | |
143 # special list for the vp | |
144 env_from TEST dummy-token DEFAULT # inherit the currently defined DEFAULT env_from mapping | |
145 env_from TEST nai.com BLACK # the vp does not like nai | |
14 | 146 env_from TEST yahoo.com DEFAULT # |
0 | 147 env_from TEST mother@spammyisp.com WHITE # suppresses dnsbl checking |
148 | |
149 | |
150 ############################################## | |
151 # specify dnsbl_lists and env_from maps to use for specific recipients | |
152 # | |
153 env_to abuse@mydomain.com WHITE WHITE # no dnsbl, no env_from map | |
154 env_to sales@mydomain.com SIMPLE NULL # sbl only, no env_from map | |
155 env_to vp@mydomain.com DEFAULT TEST # allow mail from mom | |
156 env_to old-emp@mydomain.com BLACK BLACK # return no such user even from backup mx machines | |
157 | |
158 ############################################## | |
159 # specify dnsbl_lists and env_from maps to use for clients domains | |
160 # | |
161 env_to mydomain.com DEFAULT DEFAULT | |
14 | 162 env_to customer1.com CUST1 DEFAULT # all customer 1 domains use just sbl |
163 env_to customer1a.com CUST1 DEFAULT | |
164 env_to customer1b.com CUST1 DEFAULT | |
165 env_to customer2.com CUST2 DEFAULT # all customer 2 domains use spews and sbl | |
166 env_to customer2a.com CUST2 DEFAULT | |
0 | 167 |
168 | |
169 ############################################## | |
170 # you can also include nested config files | |
171 # file names are single tokens, no embedded blanks | |
172 # | |
173 include dnsbl.conf # this will generate a recursive include file syslog error message | |
14 | 174 include_dcc DEFAULT /var/dcc/whitecommon # this includes the default dcc whitelist file |