Subject: | move() with "1:50" sequence produces numeric warning |
$imap = Mail::IMAPClient->new(
...
Uid => 0
);
...
$imap->move($to, "1:$cnt");
Code above produces following warning message: Argument "1:22" isn't
numeric in sort at /usr/local/share/perl/5.14.2/Mail/IMAPClient.pm line 3221
But messages moves successfully. Is it correct to use such sequence with
move() method?