NAME

Mail::TieFolder - Tied hash interface for mail folders

SYNOPSIS

use Mail::TieFolder;

# assuming inbox is an MH folder, and the 
# Mail::TieFolder::mh module is installed:
tie (%inbox, 'Mail::TieFolder', 'mh', 'inbox');

# get list of all message IDs in folder
@messageIDs = keys (%inbox);

# fetch message by ID 
$msg = $inbox{'9287342.2138749@foo.com'};

DESCRIPTION

Mail::TieFolder implements a tied hash interface for various mail folder formats. See the Mail::TieFolder::* modules on CPAN for supported formats.

AUTHOR

Steve Traugott, stevegt@TerraLuna.Org

SEE ALSO

perltie(1)