The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
package Email::FolderType::Mbox;
{
  $Email::FolderType::Mbox::VERSION = '0.814';
}
# ABSTRACT: class to help Email::FolderType recognise MH mail directories

# since Mbox is the default always return 1

sub match { 1 }

1;

__END__

=pod

=head1 NAME

Email::FolderType::Mbox - class to help Email::FolderType recognise MH mail directories

=head1 VERSION

version 0.814

=head1 AUTHOR

Simon Wistow <simon@thegestalt.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2005 by Simon Wistow.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut