2 # load the the keps file after changing it
4 my ($self, $line) = @_;
5 return (1, $self->msg('e5')) if $self->priv < 5;
7 if ($line =~ /^(\d+)$/) {
9 my $mref = DXMsg::get($msgno);
10 return (1, $self->msg('m4', $msgno)) unless $mref;
11 return (1, $self->msg('sat5')) unless $mref->subject =~ /\b\d{3,6}\.AMSAT\b/i;
12 my $fn = DXMsg::filename($msgno);
13 my $fh = new IO::File "$main::root/perl/convkeps.pl $fn |";
16 return (1, @in) if @in;
18 my @out = Sun::load($self);
19 @out = ($self->msg('ok')) if !@out;