4 # Copyright (c) 1998 Dirk Koopman G1TLH
11 my ($call) = $line =~ /^\s*(\S+)/;
14 return (1, $self->msg('e5')) if $self->priv < 6;
17 return (1, $self->msg('e6')) if !$call;
19 # remove the callsign from the line
20 $line =~ s/^\s*$call\s+//;
22 # can we see it? Is it a node?
24 my $noderef = DXCluster->get_exact($call);
25 return (1, $self->msg('e7', $call)) if !$noderef || !$noderef->pcversion;
28 DXProt::addrcmd($self->call, $call, $line);
30 return (1, $self->msg('rcmdo', $line, $call));