Skip to content

Instantly share code, notes, and snippets.

@waffle2k
Created December 23, 2010 05:43
Show Gist options
  • Save waffle2k/752619 to your computer and use it in GitHub Desktop.
Save waffle2k/752619 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use lib( '/home/fbl/lib' ); # Or wherever you store your custom perl libs
use Email::ARF::Hotmail;
my $message = do { local $/; <>; };
# Extract the single part mime
my $report = Email::ARF::Hotmail->create_report($message);
print $report->as_string;
exit(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment