49cc1ff6376adcd687e6b2ac2a6acd56621d2aa5
[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
49 $http_proxy = undef;
50
51 #
52 # HTTP proxy port - again leave alone unless you need this
53 #
54
55 $http_proxy_port = undef;
56
57
58 #
59 # end
60 #
61
62 1;