ahakim has asked for the wisdom of the Perl Monks concerning the following question:
Everytime I try to run this code, I get an error saying "NNTPERROR: 500 not implemented NNTPERROR: 500 command not recognized " Anybody have any ideas for me? thanks.@fields = qw(numb subj from date mesg refr char line xref); foreach $xover ($client->xover($client->newnews("$group",$current_time + - 3600))) { %fields = (); @fields{@fields} = split /\t/, $xover; print MESSAGES "Article: $fields{numb} of $group\n"; print MESSAGES $client->article($fields{numb}); print MESSAGES "\n"; $art_num++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: need help using NNTP
by Fletch (Bishop) on Aug 12, 2006 at 00:03 UTC | |
by ahakim (Novice) on Aug 12, 2006 at 02:14 UTC |