Subject: | removing unseen flag by msg number |
It's just an extension wish.
I searched a few how to solve my problem (I have to stay the accessed
mails "untouched" but I cannot found any nice way to do this.
Finally I patched my Simple.pm file like this:
sub unseen {
my ( $self, $number ) = @_;
$self->_process_cmd(
cmd => [STORE => qq[$number -FLAGS (\\Seen)]],
final => sub { 1 },
process => sub { },
);
}
ps: just wontfixing the bug if its useless.
Thanks a lot for the product :)
Best ~pete