williams554 has asked for the wisdom of the Perl Monks concerning the following question:
I'm getting error like this:use News::NNTPClient; $c = new News::NNTPClient("news.easynews.com"); $c->authinfo("****","****"); ($first, $last) = ($c->group("alt.binaries.tv.big-brother")); @ARRAY = $c->xpat("", $first, $last, qw(*Big.Brother.UK.S08.D003d.*)); foreach (@ARRAY) { @FIELDS = split; foreach (@FIELDS) { $FIELDS[13] =~ s/\"//g; open OUTPUT, ">>bbuk/$FIELDS[13]"; print OUTPUT $c->body($FIELDS[0]); close OUTPUT; print "\n\n*********** $FIELDS[0]", $c->message, "\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Downloading messages from news server
by Popcorn Dave (Abbot) on Jun 03, 2007 at 23:56 UTC | |
by Anonymous Monk on Jun 04, 2007 at 04:37 UTC | |
by Popcorn Dave (Abbot) on Jun 04, 2007 at 04:42 UTC | |
by Anonymous Monk on Jun 04, 2007 at 18:51 UTC |