hi
I m having a bit of problem with module GMail::Checker.Whenever i run the code to see the size of the mails and the number,I get the result 272 97724592.But i have 294 messages in my inbox not 272.I even deleted some messages and tried again but the result was the same.The code is below
use GMail::Checker;
my $mail=new GMail::Checker(USERNAME => "XXXXX",PASSWORD => "XXXXXX");
$mail->login("XXXXX","XXXXXX");
my ($no, $size)=$mail->get_msg_nb_size();
print $no." ".$size;
anyone knows what i m doing wrong