in reply to POP3 in libnet

Update: I initally put the following code, but I suspect I'm wrong. I've confused myself again...

$msg = $pop->top($popnum); print $msg;

Update. Working code (excuse the altered variable names) is:

my $head = $pop->top($popnum); print @{$head};

Or, you can even do:
print @{$pop->top($popnum)};