X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXVars.pm.issue;h=3f05a7b639ca18da495e34ef1a87736fafdf572e;hb=refs%2Fheads%2Fnewpc92timings;hp=56b558fa52305a343879e8f10ef944a23beb93eb;hpb=579810d363939640538f88a9caa86e01fe9c7709;p=spider.git diff --git a/perl/DXVars.pm.issue b/perl/DXVars.pm.issue index 56b558fa..3f05a7b6 100644 --- a/perl/DXVars.pm.issue +++ b/perl/DXVars.pm.issue @@ -2,26 +2,12 @@ # 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!!!! # use CAPITAL LETTERS $mycall = "GB7DJK"; @@ -53,6 +39,15 @@ $mybbsaddr = "G1TLH\@GB7TLH.#35.GBR.EU"; # the default language (the key used must match the one in the Messages file) $lang = 'en'; +# 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). +# + +@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"; @@ -89,3 +84,13 @@ $motd = "$data/motd"; # are we debugging ? @debug = qw(chan state msg cron connect); + +# are we doing xml? +$do_xml = 0; + +# the SQL database DBI dsn +#$dsn = "dbi:SQLite:dbname=$root/data/dxspider.db"; +#$dbuser = ""; +#$dbpass = ""; + +1;