xjar has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w
use Mail::POP3Client;
use strict;
my $pop = new Mail::POP3Client( USER => "(user name omitted)",
PASSWORD => "(password omitted)",
HOST => "localhost",
AUTH_MODE => "PASS" );
my $body = $pop->Body(1);
open (MORE,"|more");
print MORE $body;
close (MORE);
$pop->Close();
I'm stumped, as it was working fine then just... stopped... I can also print the contents of a file piped through more using Perl code and quit it with q just fine. Any help?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Broken Pipe woes
by tye (Sage) on Jul 18, 2000 at 05:40 UTC | |
by xjar (Pilgrim) on Jul 18, 2000 at 17:43 UTC | |
|
RE: Broken Pipe woes
by xjar (Pilgrim) on Jul 18, 2000 at 05:18 UTC | |
by prodevel (Scribe) on Jul 18, 2000 at 11:32 UTC | |
|
Re: Broken Pipe woes
by lhoward (Vicar) on Jul 18, 2000 at 05:36 UTC | |
by xjar (Pilgrim) on Jul 18, 2000 at 17:47 UTC |