From 5c771cb25e62494cba263097175d9b718acb8aba Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Wed, 28 Jan 2009 05:52:02 -0500 Subject: [PATCH] - Fix MDNSent flag checking, use arbitrary keywords (asterisk) flag (#1485706) --- program/steps/mail/show.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index 091a7a1..7ae0ae0 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -91,7 +91,7 @@ // check for unset disposition notification if ($MESSAGE->headers->mdn_to && !$MESSAGE->headers->mdn_sent && !$MESSAGE->headers->seen && - $IMAP->check_permflag('MDNSENT') && + ($IMAP->check_permflag('MDNSENT') || $IMAP->check_permflag('*')) && $mbox_name != $CONFIG['drafts_mbox'] && $mbox_name != $CONFIG['sent_mbox']) { -- Gitblit v1.9.1