diff options
author | thomascube <thomas@roundcube.net> | 2010-04-09 15:12:40 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-04-09 15:12:40 +0000 |
commit | bc4960108e78b8a571745f55f54c83ea34fd0336 (patch) | |
tree | 5d970061197870d1ac258466587c939771ec6d79 /program/steps/mail/compose.inc | |
parent | 814905ca879d976792f33cf0fb45a4d3f8fedc32 (diff) |
Option not to mark messages as read when viewed in preview pane (#1485012)
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r-- | program/steps/mail/compose.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 658f59037..2fac294af 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -143,6 +143,10 @@ if (!empty($msg_uid)) $CONFIG['prefer_html'] = $CONFIG['prefer_html'] || $CONFIG['htmleditor'] || $compose_mode == RCUBE_COMPOSE_DRAFT || $compose_mode == RCUBE_COMPOSE_EDIT; $MESSAGE = new rcube_message($msg_uid); + // make sure message is marked as read + if ($MESSAGE && $MESSAGE->headers && !$MESSAGE->headers->seen) + $IMAP->set_flag($msg_uid, 'SEEN'); + if (!empty($MESSAGE->headers->charset)) $IMAP->set_charset($MESSAGE->headers->charset); |