make Internet.pm return a 1
[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 # end
45 #
46
47 1;