stew has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -W use strict; $|++; use MIME::Parser; use MIME::Entity; my $envelope = <STDIN>; my $parser = MIME::Parser->new; $parser->output_to_core(1); $parser->tmp_to_core(1);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: MIME::Parser
by ChrisR (Hermit) on Nov 12, 2003 at 15:22 UTC | |
by stew (Scribe) on Nov 12, 2003 at 15:35 UTC |