added new debugging to daily file logging
[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_version 
17                 $clusterport $clusteraddr $debugfn 
18                 $def_hopcount $data $system $cmd
19                                 $userfn $motd $local_cmd $mybbsaddr
20                 $lang
21                                 $pc50_interval, $user_interval
22                );
23                            
24                            
25 # this really does need to change for your system!!!!                      
26 $mycall = "GB7DJK";
27
28 # your name
29 $myname = "Dirk";
30
31 # Your 'normal' callsign 
32 $myalias = "G1TLH";
33
34 # Your latitude (+)ve = North (-)ve = South in degrees and decimal degrees
35 $mylatitude = +52.68584579;
36
37 # Your Longtitude (+)ve = East, (-)ve = West in degrees and decimal degrees
38 $mylongtitude = +0.94518260;
39
40 # Your locator (yes I know I can calculate it - eventually)
41 $mylocator = "JO02LQ";
42
43 # Your QTH (roughly)
44 $myqth = "East Dereham, Norfolk";
45
46 # Your e-mail address
47 $myemail = "djk\@tobit.co.uk";
48
49 # Your BBS addr
50 $mybbsaddr = "G1TLH\@GB7TLH.#35.GBR.EU";
51
52 # the default language (the key used must match the one in the Messages file)
53 $lang = 'en';
54
55 # the tcp address of the cluster this can be an address of an ethernet port
56 # but this is more secure. For normal use this will be fine. 
57 $clusteraddr = "localhost";
58
59 # the port number of the cluster (just leave this, unless it REALLY matters to you)
60 $clusterport = 27754;
61
62 # your favorite way to say 'Yes'
63 $yes = 'Yes';
64
65 # your favorite way to say 'No'
66 $no = 'No';
67
68 # the interval between unsolicited prompts if not traffic
69 $user_interval = 11*60;
70
71 # data files live in 
72 $data = "$root/data";
73
74 # system files live in
75 $system = "$root/sys";
76
77 # command files live in
78 $cmd = "$root/cmd";
79
80 # local command files live in (and overide $cmd)
81 $localcmd = "$root/local_cmd";
82
83 # where the user data lives
84 $userfn = "$data/users";
85
86 # the "message of the day" file
87 $motd = "$data/motd";
88
89 # are we debugging ?
90 @debug = ('chan', 'state', 'msg');