=encoding utf8 =head1 NAME Mail::Box::MH::Index - keep index files for messages. =head1 INHERITANCE Mail::Box::MH::Index is a Mail::Reporter =head1 SYNOPSIS my $index = Mail::Box::MH::Index->new; $index->read(...) $index->write(...) =head1 DESCRIPTION Message folders which store their data in one single file per message are very inefficient for producing subject overviews and for computing message threads. The C object is able to store and read a the headers of a set of C messages which are part of a single C folder in one file. When the C functionality is enabled by specifying L when opening a folder, the index file is automatically read. When the folder is closed, a new index file is created. Special care is taken to avoid problems which occur when the user changes or removes message files without updating the index. If the index is not trustworthy it will not be used (costing some performance for the reader of the folder). Extends L<"DESCRIPTION" in Mail::Reporter|Mail::Reporter/"DESCRIPTION">. =head1 METHODS Extends L<"METHODS" in Mail::Reporter|Mail::Reporter/"METHODS">. =head2 Constructors Extends L<"Constructors" in Mail::Reporter|Mail::Reporter/"Constructors">. =over 4 =item Mail::Box::MH::Index-EB(%options) -Option --Defined in --Default filename head_type Mail::Message::Head::Subset head_wrap 72 log Mail::Reporter 'WARNINGS' trace Mail::Reporter 'WARNINGS' =over 2 =item filename => FILENAME The FILENAME which is used to store the headers of all the e-mails for one folder. This must be an absolute pathname. =item head_type => CLASS The type of headers which will be used to store header information when it is read from the index file. You can not be sure the index contains all header line (the mailbox may have been updated without updating the index) so this will usually be (an sub-class of) L. =item head_wrap => INTEGER The preferred number of character in each header line. =item log => LEVEL =item trace => LEVEL =back =back =head2 The Index =over 4 =item $obj-EB($messages) Append $messages to the index file. =item $obj-EB() Returns the name of the index file. =item $obj-EB($msgfile) Look if there is header info for the specified $msgfile. The filename represents one message in folder type which are organized as directory. This method will return an object of the L as specified during creation of the index object, or C if the information is not known or not trustworthy -i.e. the file size changed. =item $obj-EB() Read the index file. The header objects can after this be requested with the L method. =item $obj-EB($messages) Write an index file containing the headers specified $messages (L objects). =back =head2 Error handling Extends L<"Error handling" in Mail::Reporter|Mail::Reporter/"Error handling">. =over 4 =item $obj-EB() Inherited, see L =item $obj-EB($object) Inherited, see L =item $obj-EB( [$level]|[$loglevel, $tracelevel]|[$level, $callback] ) =item Mail::Box::MH::Index-EB( [$level]|[$loglevel, $tracelevel]|[$level, $callback] ) Inherited, see L =item $obj-EB() Inherited, see L =item $obj-EB( [$level, [$strings]] ) =item Mail::Box::MH::Index-EB( [$level, [$strings]] ) Inherited, see L =item $obj-EB($level) =item Mail::Box::MH::Index-EB($level) Inherited, see L =item $obj-EB() Inherited, see L =item $obj-EB() Inherited, see L =item $obj-EB( [$level] ) Inherited, see L =item $obj-EB( [$level] ) Inherited, see L =item $obj-EB( [$level] ) Inherited, see L =item $obj-EB() Inherited, see L =back =head2 Cleanup Extends L<"Cleanup" in Mail::Reporter|Mail::Reporter/"Cleanup">. =over 4 =item $obj-EB() Inherited, see L =back =head1 DIAGNOSTICS =over 4 =item Error: Package $package does not implement $method. Fatal error: the specific package (or one of its superclasses) does not implement this method where it should. This message means that some other related classes do implement this method however the class at hand does not. Probably you should investigate this and probably inform the author of the package. =back =head1 SEE ALSO This module is part of Mail-Box distribution version 3.009, built on August 18, 2020. Website: F =head1 LICENSE Copyrights 2001-2020 by [Mark Overmeer]. For other contributors see ChangeLog. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See F