From: minima Date: Sat, 26 Aug 2000 13:30:45 +0000 (+0000) Subject: don't allow mail message routing for clx X-Git-Tag: R_1_44~10 X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=66f3d6d287eaf6ca0dbe9cc12dac023309383924;p=spider.git don't allow mail message routing for clx --- diff --git a/Changes b/Changes index ccda150d..43c52a9e 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ 1. make blank origins on messages the node call. 2. added new version of FAQ from Ian G0VGS 3. added a dummy PC75 command (WCY merge?) +4. Don't allow mail routing for clx nodes 25Aug00======================================================================= 1. moan about and then delete empty message files 24Aug00======================================================================= diff --git a/perl/DXProt.pm b/perl/DXProt.pm index a607b409..73fcfc54 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -725,7 +725,7 @@ sub normal if ($pcno == 49 || $field[1] eq $main::mycall) { DXMsg::process($self, $line); } else { - $self->route($field[1], $line); + $self->route($field[1], $line) unless $self->is_clx; } return; }