NAME
Dezi::Aggregator::MailFS - crawl a filesystem of email messages
SYNOPSIS
use Dezi::Aggregator::MailFS;
my $fs = Dezi::Aggregator::MailFS->new(
indexer => Dezi::Indexer->new
);
$fs->indexer->start;
$fs->crawl( $path_to_mail );
$fs->indexer->finish;
DESCRIPTION
Dezi::Aggregator::MailFS is a subclass of Dezi::Aggregator::FS that expects every file in a filesystem to be an email message. This class is useful for crawling a file tree like those managed by ezmlm.
NOTE: This class will not work with personal email boxes in the Mbox format. It might work with maildir format, but that is coincidental. Use Dezi::Aggregator::Mail to handle your personal email box. Use this class to handle mail archives as with a mailing list.
METHODS
See Dezi::Aggregator::FS. Only new or overridden methods are documented here.
BUILD
Internal constructor method.
file_ok( full_path )
Like the parent class method, but ignores file extension, assuming that all files are email messages.
Returns the full_path value if the file is ok for indexing; returns 0 if not ok.
get_doc( url )
Overrides parent class to delegate the creation of the Dezi::Indexer::Doc object to Dezi::Aggregator::Mail->get_doc().
Returns a Dezi::Indexer::Doc object.
AUTHOR
Peter Karman, <perl@peknet.com>
BUGS
Please report any bugs or feature requests to bug-swish-prog at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dezi-App. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Dezi
You can also look for information at:
Mailing list
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
COPYRIGHT AND LICENSE
Copyright 2008-2018 by Peter Karman
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.