package Email::Folder::Reader;
use strict;
use Carp;
=head1 NAME
Email::Folder::Reader - reads raw RFC822 mails from a box
=head1 SYNOPSIS
use Email::Folder::Reader;
my $box = Email::Folder::Reader->new('somebox');
print $box->messages;
or, as an iterator
use Email::Folder::Reader;
my $box = Email::Folder::Reader->new('somebox');
while ( my $mail = $box->next_message ) {
print $mail;
}
=head1 METHODS
=head2 ->new($filename, %options)
your standard class-method constructor
=cut
sub new {
my $class = shift;
my $file = shift || croak "You must pass a filename";
bless { eval { $class->defaults },
@_,
_file => $file }, $class;
}
=head2 ->next_message
returns the next message from the box, or false if there are no more
=cut
sub next_message {
}
=head2 ->messages
Returns all the messages in a box
=cut
sub messages {
my $self = shift;
my @messages;
while (my $message = $self->next_message) {
push @messages, $message;
}
return @messages;
}
1;
__END__
=head1 AUTHOR
Simon Wistow <simon@thegestalt.org>
=head1 COPYING
Copyright 2003, Simon Wistow
Distributed under the same terms as Perl itself.
This software is under no warranty and will probably ruin your life,
kill your friends, burn your house and bring about the apocolapyse.
=head1 SEE ALSO
L<Email::LocalDelivery>, L<Email::Folder>
=cut
syntax highlighted by Code2HTML, v. 0.9.1