X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXVars.pm.issue;h=139368617d951c784b3c09daaee95f8338c8867e;hb=refs%2Fheads%2Fstaging;hp=ab43ca6489195ae63c7f3f8f87de45f3b4ff8cb8;hpb=9da1742219a27b1c02fd57794412088e4d7b3d1d;p=spider.git diff --git a/perl/DXVars.pm.issue b/perl/DXVars.pm.issue index ab43ca64..13936861 100644 --- a/perl/DXVars.pm.issue +++ b/perl/DXVars.pm.issue @@ -1,90 +1,56 @@ -# +# -*- perl -*- # 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; -require Exporter; -@ISA = qw(Exporter); - -@EXPORT_OK = qw($mycall $myname $myalias $mylatitude $mylongtitude $mylocator - $myqth $myemail $myprot_version - $clusterport $clusteraddr $debugfn - $def_hopcount $data $system $cmd - $userfn $motd $local_cmd $mybbsaddr - $lang - $pc50_interval $user_interval - ); - - # this really does need to change for your system!!!! -$mycall = "GB7DJK"; +# use CAPITAL LETTERS +$mycall = "Q1QQQ-2"; # your name -$myname = "Dirk"; +$myname = "Fred"; -# Your 'normal' callsign -$myalias = "G1TLH"; +# Your 'normal' callsign (in CAPTTAL LETTERS) +$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 (yes I know I can calculate it - eventually) -$mylocator = "JO02LQ"; +# Your locator (USE CAPITAL LETTERS) +$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'; - -# 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'; +$myemail = "qqq@gmail.com"; -# 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"; +# the country codes that my node is located in +# +# for example 'qw(EA EA8 EA9 EA0)' for Spain and all its islands. +# if you leave this blank then it will use the country code for +# your $mycall. This will suit 98% of sysops (including GB7 BTW). +# -# command files live in -$cmd = "$root/cmd"; +@my_cc = qw(); -# local command files live in (and overide $cmd) -$localcmd = "$root/local_cmd"; +# are we debugging ? +@debug = qw(chan state msg cron connect progress nologchan); -# where the user data lives -$userfn = "$data/users"; +# are we doing xml? +$do_xml = 0; -# the "message of the day" file -$motd = "$data/motd"; +# the SQL database DBI dsn +#$dsn = "dbi:SQLite:dbname=$root/data/dxspider.db"; +#$dbuser = ""; +#$dbpass = ""; -# are we debugging ? -@debug = ('chan', 'state', 'msg', 'cron'); +1;