0
|
1 #
|
|
2 # lines start with a command token, following by argument tokens
|
|
3 # tokens are separated by spaces or tabs
|
|
4 #
|
|
5 #
|
|
6 # dnsbl:
|
|
7 # second token is the name of this dnsbl
|
|
8 # third token is the dns suffix used for the actual lookups
|
|
9 # fourth token? is a string enclosed in single quotes, so it
|
|
10 # is not really a token. This is the error message, with
|
|
11 # up to two %s parameters for the client ip address.
|
|
12 #
|
|
13 # dnsbl_list:
|
|
14 # second token is the name of this list of dnsbls
|
|
15 # subsequent tokes are the names of the previously defined dnsbls
|
|
16 #
|
|
17 # env_from:
|
|
18 # second token is the name of this envelope-from-map. There will
|
|
19 # generally be multiple lines with the same name.
|
|
20 # third token is the envelope from value from the smtp conversation,
|
|
21 # or just the domain part that follows the @ symbol.
|
|
22 # fourth token is BLACK, WHITE, or the name of a previously defined
|
|
23 # envelope-from-map. BLACK causes mail from this sender to be
|
|
24 # rejected with "no such user". WHITE causes mail to be accepted
|
|
25 # and the dns based lists are ignored. DEFAULT may be used to override
|
|
26 # the contents of other maps that are copied into this map, and
|
|
27 # set that sender back to the default (not white or black listed,
|
|
28 # and subject to dnsbl lookups).
|
|
29 #
|
|
30 # env_to:
|
|
31 # second token is the envelope recipient value from the smtp conversation,
|
|
32 # or just the domain part that follows the @ symbol.
|
|
33 # third token is the name of a dnsbl-list, or WHITE or BLACK.
|
|
34 # fourth token is the name of an envelope-from-map, or WHITE or BLACK.
|
|
35 #
|
|
36 # If either one is BLACK, mail to this recipient is rejected with
|
|
37 # "no such user", and the dns lists are not checked.
|
|
38 #
|
|
39 # If the envelope-from-map name is WHITE, mail to this recipient is accepted
|
|
40 # and the dns lists are not checked.
|
|
41 #
|
|
42 # If the envelope-from-map exists, the map is checked for the presence
|
|
43 # of the sender. A WHITE or BLACK answer is definitive and the dns lists
|
|
44 # are not checked.
|
|
45 #
|
|
46 # If the dnsbl-list name is WHITE, the dns lists are not checked and the
|
|
47 # mail is accepted. Otherwise, the dns lists are checked and the mail
|
|
48 # is rejected if any list has an A record for the standard dns based
|
|
49 # lookup scheme (reversed octets of the client followed by the dns suffix).
|
|
50 #
|
|
51 #
|
|
52 #
|
|
53 #
|
|
54 ##############################################
|
|
55 # define the dnsbls to use
|
|
56 #
|
|
57 #
|
|
58 dnsbl LOCAL blackholes.five-ten-sg.com 'Mail from %s rejected - local; see http://www.five-ten-sg.com/blackhole.php?%s'
|
|
59 dnsbl SPEWS blackholes.spews.org 'Mail from %s rejected - spews; see http://www.spews.org/ask.cgi?x=%s'
|
|
60 dnsbl SBL sbl-xbl.spamhaus.org 'Mail from %s rejected - sbl; see http://www.spamhaus.org/query/bl?ip=%s'
|
|
61
|
|
62
|
|
63 ##############################################
|
|
64 # define the (default and other) lists of dnsbls to use
|
|
65 #
|
|
66 dnsbl_list DEFAULT LOCAL SPEWS SBL
|
|
67 dnsbl_list SIMPLE SBL
|
|
68 dnsbl_list CUST1 SBL
|
|
69 dnsbl_list CUST2 SPEWS SBL
|
|
70
|
|
71
|
|
72 ##############################################
|
|
73 # define the (default and other) env_from maps
|
|
74 #
|
|
75 env_from DEFAULT spammer@example.com BLACK
|
|
76 env_from DEFAULT yahoo.com BLACK
|
|
77
|
|
78 # special list for the vp
|
|
79 env_from TEST dummy-token DEFAULT # inherit the currently defined DEFAULT env_from mapping
|
|
80 env_from TEST nai.com BLACK # the vp does not like nai
|
|
81 env_from TEST yahoo.com DEFAULT #
|
|
82 env_from TEST mother@spammyisp.com WHITE # suppresses dnsbl checking
|
|
83
|
|
84
|
|
85 ##############################################
|
|
86 # specify dnsbl_lists and env_from maps to use for specific recipients
|
|
87 #
|
|
88 env_to abuse@mydomain.com WHITE WHITE # no dnsbl, no env_from map
|
|
89 env_to sales@mydomain.com SIMPLE NULL # sbl only, no env_from map
|
|
90 env_to vp@mydomain.com DEFAULT TEST # allow mail from mom
|
|
91 env_to old-emp@mydomain.com BLACK BLACK # return no such user even from backup mx machines
|
|
92
|
|
93 ##############################################
|
|
94 # specify dnsbl_lists and env_from maps to use for clients domains
|
|
95 #
|
|
96 env_to mydomain.com DEFAULT DEFAULT
|
|
97 env_to customer1.com CUST1 DEFAULT # all customer 1 domains use just sbl
|
|
98 env_to customer1a.com CUST1 DEFAULT
|
|
99 env_to customer1b.com CUST1 DEFAULT
|
|
100 env_to customer2.com CUST2 DEFAULT # all customer 2 domains use spews and sbl
|
|
101 env_to customer2a.com CUST2 DEFAULT
|
|
102
|
|
103
|
|
104 ##############################################
|
|
105 # you can also include nested config files
|
|
106 # file names are single tokens, no embedded blanks
|
|
107 #
|
|
108 include dnsbl.conf # this will generate a recursive include file syslog error message
|