
This module is BETA code, which means that the interfaces are fairly stable BUT it has not been out in the community long enough to guarantee much testing. Use with caution! Please report any errors back to eryq@zeegee.com as soon as you can.
 NAME
 NAMEMIME::Parser::Results - results of the last entity parsed
 SYNOPSIS
 SYNOPSISBefore reading further, you should see MIME::Parser to make sure that you understand where this module fits into the grand scheme of things. Go on, do it now. I'll wait.
Ready?  Ok...
   ### Do parse, get results:
   my $entity = eval { $parser->parse(\*STDIN); };
   my $results  = $parser->results;
   
   ### Get all messages logged:
   @msgs = $results->msgs;
   
   ### Get messages of specific types (also tests if there were problems):
   $had_errors   = $results->errors;
   $had_warnings = $results->warnings;
    
   ### Get outermost header:
   $top_head  = $results->top_head;
 DESCRIPTION
 DESCRIPTIONResults from the last MIME::Parser parse.
 PUBLIC INTERFACE
 PUBLIC INTERFACE": "; 
the current types are debug, warning, and error.
 AUTHOR
 AUTHOREryq (
All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
 VERSION
 VERSION$Revision: 5.403 $