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 /config | |
parent | 814905ca879d976792f33cf0fb45a4d3f8fedc32 (diff) |
Option not to mark messages as read when viewed in preview pane (#1485012)
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 6d12e6024..062a0c9b4 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -434,6 +434,10 @@ $rcmail_config['draft_autosave'] = 300; // default setting if preview pane is enabled $rcmail_config['preview_pane'] = false; +// Mark as read when viewed in preview pane (delay in seconds) +// Set to -1 if messages in preview pane should not be marked as read +$rcmail_config['preview_pane_mark_read'] = 0; + // focus new window if new message arrives $rcmail_config['focus_on_new_message'] = true; |