On Mon May 26 03:46:50 2008, parseint wrote:
Show quoted text> When using message_to_file and $imap->Peek is set to true, the IMAP
> command generated is incorrect and wont work on the imap servers.
It seems that the error is the following logic i message_to_file sub:
The following line:
my $cmd = $self->imap4rev1 ? "RFC822$peek" : "BODY$peek\[]";
should be:
my $cmd = $self->imap4rev1 ? "BODY$peek\[]" : "RFC822$peek";