in reply to Mail::Box woes

  1. Can you give us more of the error message?
  2. Have you tried upgrading the version of Mail::Box?
  3. What does line 467 of Mail/Box.pm say? I looked in my copy (version 2.063), and it doesn't have the string 'Uploaded file' in it, nor do any of the other modules in my lib directory. So, it could be something that would only happen with your version of Mail::Box.

-- Burvil

Replies are listed 'Best First'.
Re^2: Mail::Box woes
by InfiniteLoop (Hermit) on Mar 30, 2006 at 20:51 UTC
    The error is thrown immediately after I do the following:
    .... #open the mail folder, in rw mode my $folder = Mail::Box::Maildir->new( folder => $args{maildir}, access => 'rw', remove_when_empty => 0 ) or croak "Cannot open Maildir " . $args{maildir} . ": $!"; #run thru all messages foreach my $id ( $folder->messageIds ) { my $message = $folder->messageId($id); next if $message->isDeleted; ....
    The call to $folder->messageId($id) die's with the error.

    Actually, earlier I had posted the same message on the Mail::Box's mailing list, hence the reference to the line number of the code base

    I will take your advice and upgrade to the latest stable build. Thanks