From: Dirk Koopman Date: Wed, 20 Mar 2024 16:30:40 +0000 (+0000) Subject: Make talk flood route X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=f2882b6c4323ac02e60e54bcf2d9c9fdd396de9b Make talk flood route --- diff --git a/Changes b/Changes index 05c67fbe..ef87e440 100644 --- a/Changes +++ b/Changes @@ -11,6 +11,9 @@ The Filter system will now show the actual token that a faulty command dislikes. +3. Disable the "is there a route to callsign X3XXX" test in talk. This is a + legacy test that should not apply at the user level. The resulting PC93 is + flood routed unless there is a genuine direct route to that callsign. 25Mar23======================================================================= 1. Changed the default of X and Y (in item 2 below) to 27 and 20 respectively. 24Mar23======================================================================= diff --git a/cmd/talk.pl b/cmd/talk.pl index 46de76fa..2d40b788 100644 --- a/cmd/talk.pl +++ b/cmd/talk.pl @@ -39,7 +39,7 @@ $via = uc $via if $via; my $call = $via || $to; my $clref = Route::get($call); # try an exact call my $dxchan = $clref->dxchan if $clref; -push @out, $self->msg('e7', $call) unless $dxchan; +#push @out, $self->msg('e7', $call) unless $dxchan; #$DB::single = 1;