Would you believe it, this works:
use Net::NNTP;
my $nntp= Net::NNTP->new($newsServer, Timeout => 60, Debug => 0);
$nntp->group($group);
my $since=time()-86400;
my $listPointer=$nntp->newnews("$since");
If only all the documentation on the net said that!!