added the hooks for internationalisation
[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 # cluster debug file
63 $debugfn = "/tmp/debug_cluster";
64
65 # your favorite way to say 'Yes'
66 $yes = 'Yes';
67
68 # your favorite way to say 'No'
69 $no = 'No';
70
71 # the interval between unsolicited prompts if not traffic
72 $user_interval = 11*60;
73
74 # data files live in 
75 $data = "$root/data";
76
77 # system files live in
78 $system = "$root/sys";
79
80 # command files live in
81 $cmd = "$root/cmd";
82
83 # local command files live in (and overide $cmd)
84 $localcmd = "$root/local_cmd";
85
86 # where the user data lives
87 $userfn = "$data/users";
88
89 # the "message of the day" file
90 $motd = "$data/motd";
91
92 # are we debugging ?
93 @debug = ('chan', 'state', 'msg');