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