Re: extract MIME attachments from 700MB imap folder

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



<snip>

I've read the man page, but am wholly unclear as to:
1) will this do the trick for me
2) are there other known tools which might be recommended


Mime::Parser will split out the body and attachments of a message into files. I've only used it on single files being delivered via procmail like this:

use MIME::Parser;
### Create parser, and set some parsing options:
$archive='/path/to/dir';
my $parser = new MIME::Parser;
### Change how nameless message-component files are named:
$parser->output_dir("$archive");
$parser->output_prefix('msg');
### Parse input:
$entity = $parser->parse(\*STDIN) or die "parse failed\n";

But you'll probably want to do something a little more clever to toss the body and use sensible filenames for the attachments. I think Mime::Parser::Filer can do that.


Hi Les,

Thanks for your reply.

I'm wholly ignorant of how to go about doing this using your suggestion. Are there resources to which you might point me for additional info?
Thanks again,
-Ray
_______________________________________________
CentOS mailing list
CentOS@xxxxxxxxxx
http://lists.centos.org/mailman/listinfo/centos

[Index of Archives]     [CentOS]     [CentOS Announce]     [CentOS Development]     [CentOS ARM Devel]     [CentOS Docs]     [CentOS Virtualization]     [Carrier Grade Linux]     [Linux Media]     [Asterisk]     [DCCP]     [Netdev]     [Xorg]     [Linux USB]
  Powered by Linux