> I'm trying to make my own webmail page using Embperl and the
Mail::POP3Client
> module. When I do the function call to get the message headers
($pop->Head($i)),
> some stuff I don't want gets sent to STDOUT, thus getting sent to the
browser.
> Is there some way to get around this? Thanks!
>
You can send it to a file (e.g. /dev/null):
open FH, "/dev/null" ;
select (FH) ; # send STDOUT to FH
Is that what you want?
Gerald
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]