They can be safely ignored. The problem is in the accuracy of the first and last post numbers reported by the server. They often lie about it.
The next version will not rely on the reported article numbers so this won't happen.
You can turn off the errors by finding this line in newnews.pl
Code:
my $con = new News::NNTPClient($server,$port) or die "Unable to connect to $$newsgroup->{server}";
and replacing it with
Code:
my $con = new News::NNTPClient($server,$port,0) or die "Unable to connect to $$newsgroup->{server}";
This line is in the
connect_usenet function on or around line 336