Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
This give the following output.sub pop_header { @popst = $pop->popstat(); $popnum = $popst[0]; print "Header of message $popnum being retreived.\n"; @array = $pop->top($popnum); print "@array\n"; }
How do I get the actual header rather than this reference. I know this is probably obvious... -ChrisHeader of message 23 being retreived. ARRAY(0x2cbf0)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: POP3 in libnet
by BazB (Priest) on Jan 25, 2002 at 03:39 UTC |