Changeset 2855518 in github
- Timestamp:
- Oct 27, 2008 6:41:40 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 09fc3f3
- Parents:
- 11b1b16
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/mail/move_del.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r95d90f8 r2855518 1 1 CHANGELOG RoundCube Webmail 2 2 --------------------------- 3 4 2008/10/27 (alec) 5 ---------- 6 - Fix unread message unintentionally marked as read if read_when_deleted=true (#1485409) 7 - Remove port number from SERVER_NAME in smtp_helo_host (#1485518) 3 8 4 9 2008/10/25 (alec) -
program/steps/mail/move_del.inc
r9281884 r2855518 29 29 $target = get_input_value('_target_mbox', RCUBE_INPUT_POST); 30 30 $mbox = get_input_value('_mbox', RCUBE_INPUT_POST); 31 32 // flag messages as read before moving them 33 if ($CONFIG['read_when_deleted']) 34 $IMAP->set_flag($uids, 'SEEN'); 35 31 36 $moved = $IMAP->move_message($uids, $target, $mbox); 32 37 … … 38 43 exit; 39 44 } 40 41 // flag old messages as read because rcube_imap will not send expunge command after moving42 if ($CONFIG['read_when_deleted'])43 $IMAP->set_flag($uids, 'SEEN');44 45 45 46 if (!$CONFIG['flag_for_deletion'])
Note: See TracChangeset
for help on using the changeset viewer.
