[imp] mark as seen not working

Rad ryvola at computermedia.cz
Sat Jul 15 08:12:50 PDT 2006


lukemack <luke <at> lukem.co.uk> writes:

> 
> 
> Hi,
> 
> When logging into IMP using IMAP, if I select all messages and choose 'mark
> as seen', the mails are not marked as seen and still appear in bold.
> 



I have had the same problem. I was checking the source code and found (in my
opinion) missing negation in file imp/mailbox.php at line 706. In my case it
reads
if (!$h->seen || $h->recent) {
and I have changed it to 
if (!$h->seen || !$h->recent) {
(added negation to the second condition)
and now it works. I don't know if it's a horde-imp bug or I have some wrong
configuration what needs this fix.

Hope it helps,
Rad




More information about the imp mailing list