From 66f3d6d287eaf6ca0dbe9cc12dac023309383924 Mon Sep 17 00:00:00 2001 From: minima Date: Sat, 26 Aug 2000 13:30:45 +0000 Subject: [PATCH] don't allow mail message routing for clx --- Changes | 1 + perl/DXProt.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.34.1