package Email::Thread; =head1 NAME Email::Thread - Use JWZ's mail threading algorithm with Email::Simple objects =cut use Mail::Thread; use vars qw( @ISA $VERSION ); @ISA = qw( Mail::Thread ); $VERSION = '0.68'; sub _get_hdr { my ($class, $msg, $hdr) = @_; $msg->header($hdr); } sub _container_class { "Email::Thread::Container" } package Email::Thread::Container; use vars qw( @ISA $VERSION ); @ISA = qw( Mail::Thread::Container ); $VERSION = $Email::Thread::VERSION; sub header { eval { $_[0]->message->header($_[1]) } } 1; __END__ =head1 SYNOPSIS use Email::Thread; my $threader = new Email::Thread (@messages); $threader->thread; dump_em($_,0) for $threader->rootset; sub dump_em { my ($self, $level) = @_; debug (' \\-> ' x $level); if ($self->message) { print $self->message->head->get("Subject") , "\n"; } else { print "[ Message $self not available ]\n"; } dump_em($self->child, $level+1) if $self->child; dump_em($self->next, $level) if $self->next; } =head1 DESCRIPTION Strictly speaking, this doesn't really need L objects. It just needs an object that responds to the same API. At the time of writing the list of classes with the Email::Simple API comprises just Email::Simple. Due to how it's implemented, its API is an exact clone of L. Please see that module's documentation for API details. Just mentally substitute C everywhere you see C and C where you see C. =head1 THANKS Simon Cozens (SIMON) for encouraging me to release it, and for Email::Simple and Mail::Thread. Richard Clamp (RCLAMP) for the header patch. =head1 SUPPORT Support for this module is provided via the CPAN RT system. This means, if you have a problem, go to the URL below, or email the email address below: http://perl.dellah.org/rt/emailthread bug-email-thread@rt.cpan.org This makes it much easier for me to track things and thus means your problem is less likely to be neglected. =head1 LICENCE AND COPYRIGHT Copyright E Iain Truskett, 2003. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the licences can be found in the F and F files included with this module. =head1 AUTHOR Iain Truskett =head1 SEE ALSO L, L, L =cut