]> gitweb.michael.orlitzky.com - mjo-overlay.git/blob - net-dns/rbldnsd/files/confd-0.997
f20b3acdcf53d24557777d34393c4f16b83a0d80
[mjo-overlay.git] / net-dns / rbldnsd / files / confd-0.997
1 # The addresses on which to listen, as a bash array. The syntax is
2 # "host:port", where the port defaults to 53.
3 LISTEN=( "127.0.0.1" "192.168.0.1" )
4
5 # A list of RBL zones, as a bash array. For the correct syntax, please
6 # see the rbldnsd(8) man page. The following $ZONES will look for
7 # files named "badguys.example.com" and "spammers.example.net" (in the
8 # appropriate format) under /var/db/rbldnsd, and use those same names
9 # for the blacklists contained therein.
10 ZONES=( "badguys.example.com:ip4set:badguys.example.com"
11 "spammers.example.net:ip4tset:spammers.example.net" )
12
13 # Add any additional options for the rbldnsd daemon below. The -a and
14 # -vv below are suggested for performance/security reasons. They are
15 # described in the man page.
16 #
17 # The rootdir (-r) and PID (-p) options are passed automatically, with
18 # rootdir set to /var/db/rbldnsd (where you should put your zone
19 # files). The daemon will run as the rbldns user, which was created by
20 # portage.
21 OPTIONS="-a -vv"