]> gitweb.michael.orlitzky.com - mjo-overlay.git/blob - net-dns/rbldnsd/files/confd-0.997a
net-dns/rbldnsd: Don't depend on net in the init script.
[mjo-overlay.git] / net-dns / rbldnsd / files / confd-0.997a
1 # A whitespace-separated list of addresses on which to listen. The
2 # syntax is "host:port", where the port defaults to 53.
3 #
4 # Note that by default the rbldnsd init script does not require any
5 # interfaces other than lo to be "up" (see bug #439092). So if you
6 # LISTEN on a non-loopback interface, you should specify a dependency
7 # on that interface using rc_need. An example is given below assuming
8 # that net.lan0 provides 192.168.0.1.
9 #
10 # rc_need="net.lan0"
11 #
12 # LISTEN="127.0.0.1
13 # 192.168.0.1"
14 #
15 LISTEN="localhost"
16
17
18 # A whitespace-separated list of RBL zones. For the correct syntax, please
19 # see the rbldnsd(8) man page. The following $ZONES will look for
20 # files named "badguys.example.com" and "spammers.example.net" (in the
21 # appropriate format) under /var/db/rbldnsd, and use those same names
22 # for the blacklists contained therein.
23 ZONES="badguys.example.com:ip4set:badguys.example.com
24 spammers.example.net:ip4tset:spammers.example.net"
25
26
27 # Add any additional options for the rbldnsd daemon below. The -a and
28 # -vv below are suggested for performance/security reasons. They are
29 # described in the man page.
30 #
31 # The rootdir (-r) and PID (-p) options are passed automatically, with
32 # rootdir set to /var/db/rbldnsd (where you should put your zone
33 # files). The daemon will run as the rbldns user, which was created by
34 # portage.
35 OPTIONS="-a -vv"