Update TODO based on work for 0.4.1
[python-rwhoisd.git] / rwhoisd / config.py
1 # This file is part of python-rwhoisd
2 #
3 # Copyright (C) 2003, David E. Blacka
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA
19
20 """Server global variables should be set here."""
21
22 import socket
23
24 ##### Editable Configuration Options
25
26 # the port to listen on.
27 port = 4321
28 # the interface address to bind to. "" means INADDR_ANY.
29 server_address = ""
30
31 # the hostname to advertise in the banner.
32 server_hostname = socket.getfqdn()
33
34 # setting this here sets a default session response limit.  0
35 # means no response limit.  This should be between min_limit and
36 # max_limit defined below.
37 default_limit = 0
38 # set this to the maximum value that the limit can be set to
39 max_limit = 256
40 # set this to the minimum value that the limit can be set to
41 # if this is zero, you are allowing clients to disable query limits.
42 min_limit = 0
43
44 # If this is true, some logging will be done to stdout.
45 verbose = False
46
47 #### END Editable Configuration Options
48
49 version = "0.4.1"
50 banner_string = "%%rwhois V-1.5 %s (python-rwhoisd %s)" % \
51                 (server_hostname, version)
52