2 # Query the PineKnot Database server for a callsign
4 # from an idea by Steve Franke K9AN and information from Angel EA7WA
8 my ($self, $line) = @_;
9 my @list = split /\s+/, $line; # generate a list of callsigns
13 return (1, "SHOW/CALL <callsign>, e.g. SH/CALL g1tlh") unless @list;
17 my $t = new Net::Telnet;
19 push @out, $self->msg('call1');
21 $t->open(Host => "jeifer.pineknot.com",
26 Log('call', "show/call $l");
27 while (my $result = $t->getline) {
32 push @out, $self->msg('e18', 'PineKnot');