Changeset 2010 in subversion
- Timestamp:
- Oct 25, 2008 12:29:34 PM (5 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/mail/show.inc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r2006 r2010 1 1 CHANGELOG RoundCube Webmail 2 2 --------------------------- 3 4 2008/10/25 (alec) 5 ---------- 6 - Don't send disposition notification receipts for messages marked as 'read' (#1485523) 3 7 4 8 2008/10/24 (alec) -
trunk/roundcubemail/program/steps/mail/show.inc
r2009 r2010 70 70 $OUTPUT->set_pagetitle($MESSAGE->subject); 71 71 72 // mark message as read73 if (!$MESSAGE->headers->seen)74 $IMAP->set_flag($MESSAGE->uid, 'SEEN');75 76 72 // give message uid to the client 77 73 $OUTPUT->set_env('uid', $MESSAGE->uid); … … 88 84 // check for unset disposition notification 89 85 if ($MESSAGE->headers->mdn_to && 90 !$MESSAGE->headers->mdn_sent && 86 !$MESSAGE->headers->mdn_sent && !$MESSAGE->headers->seen && 91 87 $IMAP->check_permflag('MDNSENT') && 92 88 $mbox_name != $CONFIG['drafts_mbox'] && … … 141 137 if ($last >0) 142 138 $OUTPUT->set_env('last_uid', $last); 139 140 // mark message as read 141 if (!$MESSAGE->headers->seen) 142 $IMAP->set_flag($MESSAGE->uid, 'SEEN'); 143 143 } 144 144
Note: See TracChangeset
for help on using the changeset viewer.
