39549e64db576dfcc699df6aa858d806de5a881e
[spider.git] / perl / DXVars.pm
1 #
2 # The system variables - those indicated will need to be changed to suit your
3 # circumstances (and callsign)
4 #
5 # Copyright (c) 1998 - Dirk Koopman G1TLH
6 #
7 # $Id$
8 #
9
10 package main;
11
12 require Exporter;
13 @ISA = qw(Exporter);
14
15 @EXPORT_OK = qw($mycall $myname $myalias $mylatitude $mylongtitude $mylocator
16                 $myqth $myemail $myprot 
17                 $clusterport $clusteraddr $debugfn 
18                 $def_hopcount $root $data $system $cmd
19                                 $userfn $motd $local_cmd $mybbsaddr
20                );
21                            
22                            
23 # this really does need to change for your system!!!!                      
24 $mycall = "GB7DJK";
25
26 # your name
27 $myname = "Dirk";
28
29 # Your 'normal' callsign 
30 $myalias = "G1TLH";
31
32 # Your latitude (+)ve = North (-)ve = South in degrees and decimal degrees
33 $mylatitude = +52.68584579;
34
35 # Your Longtitude (+)ve = East, (-)ve = West in degrees and decimal degrees
36 $mylongtitude = +0.94518260;
37
38 # Your locator (yes I know I can calculate it - eventually)
39 $mylocator = "JO02LQ";
40
41 # Your QTH (roughly)
42 $myqth = "East Dereham, Norfolk";
43
44 # Your e-mail address
45 $myemail = "djk\@tobit.co.uk";
46
47 # Your BBS addr
48 $mybbsaddr = "G1TLH\@GB7TLH.#35.GBR.EU";
49
50 # the tcp address of the cluster and so does this !!!
51 $clusteraddr = "dirk1.tobit.co.uk";
52
53 # the port number of the cluster (just leave this, unless it REALLY matters to you)
54 $clusterport = 27754;
55
56 # cluster debug file
57 $debugfn = "/tmp/debug_cluster";
58
59 # the version of DX cluster (tm) software I am masquerading as
60 $myprot = "5447";
61
62 # default hopcount to use - note this will override any incoming hop counts, if they are greater
63 $def_hopcount = 7;
64
65 # root of directory tree for this system
66 $root = "/spider"; 
67
68 # data files live in 
69 $data = "$root/data";
70
71 # system files live in
72 $system = "$root/sys";
73
74 # command files live in
75 $cmd = "$root/cmd";
76
77 # local command files live in (and overide $cmd)
78 $localcmd = "$root/local_cmd";
79
80 # where the user data lives
81 $userfn = "$data/users";
82
83 # the "message of the day" file
84 $motd = "$data/motd";
85
86 # are we debugging ?
87 @debug = ('chan');