It's still legal in 23 states! Honest!
Cheers,
Kevin
On Thu, Jul 18, 2002 at 12:33:28PM -0700, John W. Krahn ([EMAIL PROTECTED]) said
something similar to:
> Kevin Meltzer wrote:
> >
> > At this point, attachments should have been parsed out and created in
> > $INCOMING_DIR. Use $entity to fon
Kevin Meltzer wrote:
>
> At this point, attachments should have been parsed out and created in
> $INCOMING_DIR. Use $entity to fondle the rest of the message as you
> want. Much more info in the docs.
Fondling mails Kevin? That doesn't sound very appealing. :-)
John
--
use Perl;
program
ful
If you mean when an attachment is a mail message with attachments...
yes.
Cheers,
Kevin
On Thu, Jul 18, 2002 at 01:33:21PM -0400, Wiggins d'Anconia ([EMAIL PROTECTED])
said something similar to:
> On a side note and out of laziness (I know RTFM)
>
> Does MIME::Parser handle recursive attac
On a side note and out of laziness (I know RTFM)
Does MIME::Parser handle recursive attachments?? We attempted to home
grow a parser a couple of years ago (I realize a lot has changed since
then) but were always trapped by multiple attachments inside an
attachment, etc. which for whatever
I use MIME::Parser, and have always loved it. It will extract
attachments to files, and you can do what you want with them.
For example:
use MIME::Parser;
my $message = ;
$parser->output_dir('/some/directory');
my $entity = $parser->parse_data(\$message);
At this point, attachments should hav