CC: | phil [...] perkpartners.com |
Subject: | delete_message |
Date: | Sun, 14 Nov 2010 17:19:58 +0100 |
To: | bug-Mail-IMAPClient [...] rt.cpan.org |
From: | alfonso caponi <alfonso.caponi [...] gmail.com> |
Hi,
I'm using the last version of your module on ubuntu.
In particular I've a problem with "delete_message" function using the my
Gmail account.
$imap->delete_message($msgid)
or
my @msgs = $imap->seen;
scalar(@msgs) and $imap->delete_message(\@msgs) or die "Could not
delete_message: $@\n";
or
my $msgs = scalar($imap->seen);
scalar(@$msgs) and $imap->delete_message($msgs) or die "Could not
delete_message: $@\n";
not seems works fine. No errors or warnings but the message is not deleted!
:(
Can you help me please?
Thank you,
AL