staging commt for badword and badip
[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 #
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
33 $qrz_uid = undef;
34
35 #
36 # QRZ.com password - this goes with your user id above
37 #
38 # eg 
39 # $qrz_pw = 'fishhooks';
40 #
41
42 $qrz_pw = undef;
43
44 #
45 # the address of any HTTP proxy you might be using
46 #
47 # leave as is unless you need one
48 #
49 # eg:  $http_proxy = 'wwwcache.demon.co.uk';
50 #
51
52 $http_proxy = undef;
53
54 #
55 # HTTP proxy port - again leave alone unless you need this
56 #
57 # eg: $http_proxy_port = 8080;
58 #
59
60 $http_proxy_port = undef;
61
62 #
63 # list of urls and other things that are used in commands, here so that they
64 # can be changed if necessary.
65 #
66
67 $qrz_url = 'xmldata.qrz.com';     # used by show/qrz
68 $wm7d_url = 'www.wm7d.net';   # used by show/wm7d
69 $db0sdx_url = 'www.qslinfo.de'; # used by show/db0sdx
70 $db0sdx_path = '/qslinfo';
71 $db0sdx_suffix = '.asmx';
72 $dx425_url = 'www.iz5fsa.net';          # used by show/425
73 #$contest_host = 'www.sk3bg.se';         # used by show/contest
74 #$contest_url = "/contest/text";         # used by show/contest
75
76 #SHOW/IK3QAR <callsign> Show the 5 most recent informations found on IK3QAR
77 ##Callsign Database about QSL Manager, Manager address and comments. This
78 ##command works for sysop subscribed for the service at:
79 ##    http://www.ik3qar.it/manager/dxc.php
80 ##Write the given password below in $ik3qar_pw
81 #
82 $ik3qar_url = 'www.ik3qar.it';    # used by show/ik3qar
83 $ik3qar_pw = 'PUT-PASSWORD-HERE';    # used by show/ik3qar
84
85 # NOTE: you must copy $ik3qar_* lines to local/Internet.pm for them to have
86 # any effect on an already running node.
87 #
88 #
89 # end
90 #
91
92 1;