1. Email::MIME::Creator is only mentioned in SEE ALSO.
2. The user wouldn't think of looking there, because he is not
interested in creating a Mime message, but decoding it.
Show quoted text> That's exactly what that method does.
Not the method on the man page.
Show quoted text> If you had bothered to write a test for what you wanted, you would
> have seen that this works.
Of course I wrote a test first.
Show quoted text> Given this program:
But that's not what is on the man page, here in Debian sid at least.
The best one does reading that is something like
local $/;
$k=0;
use Email::MIME;
my $p = Email::MIME->new(<>);
print $p->debug_structure;
my @parts = $p->parts;
for(@parts){print ++$k; print $_->debug_structure;...