fixed problems with show/channel
[spider.git] / perl / DXVars.pm
index df78142901df1450ee09102494ffa5345dc3ea1b..362f26e2da9762786dddeeee28019603edf46759 100644 (file)
@@ -2,28 +2,33 @@
 # The system variables - those indicated will need to be changed to suit your
 # circumstances (and callsign)
 #
+# Copyright (c) 1998 - Dirk Koopman G1TLH
+#
+# $Id$
+#
 
 package main;
 
 require Exporter;
 @ISA = qw(Exporter);
 
-@EXPORT_OK = qw($mycall $myname $mynormalcall $mylatitude $mylongtitude $mylocator
-                $myqth $myemail $myprot 
+@EXPORT_OK = qw($mycall $myname $myalias $mylatitude $mylongtitude $mylocator
+                $myqth $myemail $myprot_version 
                 $clusterport $clusteraddr $debugfn 
                 $def_hopcount $root $data $system $cmd
-                               $userfn
+                               $userfn $motd $local_cmd $mybbsaddr
+                               $pc50_interval, $user_interval
                );
                           
                           
 # this really does need to change for your system!!!!                     
-$mycall = "GB7TLH";
+$mycall = "GB7DJK";
 
 # your name
 $myname = "Dirk";
 
 # Your 'normal' callsign 
-$mynormalcall = "G1TLH";
+$myalias = "G1TLH";
 
 # Your latitude (+)ve = North (-)ve = South in degrees and decimal degrees
 $mylatitude = +52.68584579;
@@ -38,7 +43,10 @@ $mylocator = "JO02LQ";
 $myqth = "East Dereham, Norfolk";
 
 # Your e-mail address
-$myemail = "djk@tobit.co.uk";
+$myemail = "djk\@tobit.co.uk";
+
+# Your BBS addr
+$mybbsaddr = "G1TLH\@GB7TLH.#35.GBR.EU";
 
 # the tcp address of the cluster and so does this !!!
 $clusteraddr = "dirk1.tobit.co.uk";
@@ -50,7 +58,19 @@ $clusterport = 27754;
 $debugfn = "/tmp/debug_cluster";
 
 # the version of DX cluster (tm) software I am masquerading as
-$myprot = "5447";
+$myprot_version = "5447";
+
+# your favorite way to say 'Yes'
+$yes = 'Yes';
+
+# your favorite way to say 'No'
+$no = 'No';
+
+# the interval between pc50s (in seconds)
+$pc50_interval = 14*60;
+
+# the interval between unsolicited prompts if not traffic
+$user_interval = 11*60;
 
 # default hopcount to use - note this will override any incoming hop counts, if they are greater
 $def_hopcount = 7;
@@ -67,5 +87,14 @@ $system = "$root/sys";
 # command files live in
 $cmd = "$root/cmd";
 
+# local command files live in (and overide $cmd)
+$localcmd = "$root/local_cmd";
+
 # where the user data lives
 $userfn = "$data/users";
+
+# the "message of the day" file
+$motd = "$data/motd";
+
+# are we debugging ?
+@debug = ('chan');