Subject: | Documentation needs to be corrected |
The documentation gives as an example:
my $helper = Maildir::Reader->new( path => "~/Maildir/.foo.com/" );
Giving the following error:
Use of uninitialized value in concatenation (.) or string at /home/mimosinnet/perl5/perlbrew/perls/perl-5.16.3/lib/site_perl/5.16.3/Maildir/Reader.pm line 153.
Line 153 in Maildir::Reader.pm is:
foreach my $file ( glob( $self->{ 'maildir' } . $archive . "/*" ) )
Therefore, the example in the documentation should be:
my $helper = Maildir::Reader->new( maildir => "~/Maildir/.foo.com/" );
Thanks!