Skip Menu |

This queue is for tickets about the Mail-IMAPClient CPAN distribution.

Report information
The Basics
Id: 36184
Status: resolved
Priority: 0/
Queue: Mail-IMAPClient

People
Owner: Nobody in particular
Requestors: parseint [...] portalen.no
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in:
  • 2.99_01
  • 2.99_02
  • 2.99_04
  • 2.99_05
  • 2.99_06
  • 2.99_07
  • 3.00
  • 3.02
  • 3.03
  • 3.04
  • 3.05
  • 3.06
  • 3.07
Fixed in: (no value)



Subject: Bug in message_to_file when using $imap->Peek(1);
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.
From: parseint [...] portalen.no
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";
Subject: Re: [rt.cpan.org #36184] Bug in message_to_file when using $imap->Peek(1);
Date: Mon, 26 May 2008 13:27:15 +0200
To: Parse Int via RT <bug-Mail-IMAPClient [...] rt.cpan.org>
From: Mark Overmeer <solutions [...] overmeer.net>
* Parse Int via RT (bug-Mail-IMAPClient@rt.cpan.org) [080526 08:04]: Show quoted text
> Queue: Mail-IMAPClient > Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=36184 > > > On Mon May 26 03:46:50 2008, parseint wrote:
> > 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.
you are correct. Patch will be included in 3.08 -- Thanks, MarkOv ------------------------------------------------------------------------ Mark Overmeer MSc MARKOV Solutions Mark@Overmeer.net solutions@overmeer.net http://Mark.Overmeer.net http://solutions.overmeer.net
should have been fixed