b6a387ee36fb98bc03d0da059e263b2f36fdc060
[spider.git] / perl / Internet.pm
1
2 # in order for you to use the internet accessing routines you
3 # need to set various flags and things in this file
4 #
5 # BUT DO NOT ALTER THIS FILE! It will be overwritten on every update
6 #
7 # COPY this file to ../local, alter it there and restart the software
8 #
9 # Copyright (c) 2000 Dirk Koopman G1TLH
10 #
11 # $Id$
12 #
13
14 package Internet;
15
16 #
17 # set this flag to 1 if you want to allow internet commands
18 #
19
20 $allow = 0;
21
22 #
23 # QRZ.com user id 
24 #
25 # set this to your QRZ user name (you need this for the sh/qrz 
26 # command)
27 #
28 # eg 
29 # $qrz_uid = 'gb7xxx';
30 #
31
32 $qrz_uid = undef;
33
34 #
35 # QRZ.com password - this goes with your user id above
36 #
37 # eg 
38 # $qrz_pw = 'fishhooks';
39 #
40
41 $qrz_pw = undef;
42
43 #
44 # the address of any HTTP proxy you might be using
45 #
46 # leave as is unless you need one
47 #
48 # eg:  $http_proxy = 'wwwcache.demon.co.uk';
49 #
50
51 $http_proxy = undef;
52
53 #
54 # HTTP proxy port - again leave alone unless you need this
55 #
56 # eg: $http_proxy_port = 8080;
57 #
58
59 $http_proxy_port = undef;
60
61
62 #
63 # end
64 #
65
66 1;