X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXVars.pm.issue;h=ed19470c478a8d1bac7295effc81746f5f124015;hb=refs%2Fheads%2Fnew-spawn;hp=ff8e2b2c64be73f04647dfa606f89644667aa039;hpb=0154b38552abaaa4e79ebd9f3e647352acacbcc7;p=spider.git diff --git a/perl/DXVars.pm.issue b/perl/DXVars.pm.issue index ff8e2b2c..ed19470c 100644 --- a/perl/DXVars.pm.issue +++ b/perl/DXVars.pm.issue @@ -2,43 +2,36 @@ # The system variables - those indicated will need to be changed to suit your # circumstances (and callsign) # -# Copyright (c) 1998 - Dirk Koopman G1TLH +# Copyright (c) 1998-2007 - Dirk Koopman G1TLH # -# $Id$ # package main; # this really does need to change for your system!!!! # use CAPITAL LETTERS -$mycall = "GB7DJK"; +$mycall = "Q1QQQ-2"; # your name -$myname = "Dirk"; +$myname = "Fred"; # Your 'normal' callsign (in CAPTTAL LETTERS) -$myalias = "G1TLH"; +$myalias = "Q1QQQ"; # Your latitude (+)ve = North (-)ve = South in degrees and decimal degrees -$mylatitude = +52.68584579; +$mylatitude = +52.0; # Your Longtitude (+)ve = East, (-)ve = West in degrees and decimal degrees -$mylongitude = +0.94518260; +$mylongitude = +0.0; # Your locator (USE CAPITAL LETTERS) -$mylocator = "JO02LQ"; +$mylocator = "JO02AA"; # Your QTH (roughly) -$myqth = "East Dereham, Norfolk"; +$myqth = "SomeTown, SomeState"; # Your e-mail address -$myemail = "djk\@tobit.co.uk"; - -# Your BBS addr -$mybbsaddr = "G1TLH\@GB7TLH.#35.GBR.EU"; - -# the default language (the key used must match the one in the Messages file) -$lang = 'en'; +$myemail = "qqq@gmail.com"; # the country codes that my node is located in # @@ -49,40 +42,6 @@ $lang = 'en'; @my_cc = qw(); -# the tcp address of the cluster this can be an address of an ethernet port -# but this is more secure. For normal use this will be fine. -$clusteraddr = "localhost"; - -# the port number of the cluster (just leave this, unless it REALLY matters to you) -$clusterport = 27754; - -# your favorite way to say 'Yes' -$yes = 'Yes'; - -# your favorite way to say 'No' -$no = 'No'; - -# the interval between unsolicited prompts if not traffic -$user_interval = 11*60; - -# data files live in -$data = "$root/data"; - -# system files live in -$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 = qw(chan state msg cron connect);