Hi all,
I fixed the problem within Horde IMP
Imp shows if the recent flag is set to one the message as unseen.
To fix this you have to edit
mailbox.php
then change:
if (!$h->seen || $h->recent) {
$flagbits |= IMP_UNSEEN;
$msg['status'] .= Horde::img('unseen.gif', _("Unseen"));
$style[] = 'b';
$msg['bg'] = 'unseen';
}
TO
if (!$h->seen ) {
$flagbits |= IMP_UNSEEN;
$msg['status'] .= Horde::img('unseen.gif', _("Unseen"));
$style[] = 'b';
$msg['bg'] = 'unseen';
}
reaked wrote:
Hi all,
correction: right now I'm using dbmail 1.2.1-2. But I tried dbmail 2
too.
I figured out now, that the problem is the recent flag.
As long it is set to 1, IMP doesn't display the message as read,
but it is flagged as read though.
Summary:
message flagged to 1 => IMP shows message as not read even it is
alread marked as read
message flag recent to 0 => IMP does mark the message in the right
way.
do I need the recent flag ?
can I turn it off somehow ?
thanks
Markus
freaked wrote:
Hi all,
I'm using the latest dbmail 2 with horde/imp.
I login into the IMAP server and my mails are displayed, but I can't
mark them as read.
I'm sure this is a configuration problem. I tried it with mozilla and
mark as read did work fine.
I also had once a folder where I was able to do it, but I can't get the
point what todo
Could you help me out and give me some hints why this could be ?
Is there a documentation out there !?
thanks
Markus
_______________________________________________
Dbmail mailing list
[email protected]
https://mailman.fastxs.nl/mailman/listinfo/dbmail
_______________________________________________
Dbmail mailing list
[email protected]
https://mailman.fastxs.nl/mailman/listinfo/dbmail
|