diff --git a/mozilla/mailnews/mailnews.js b/mozilla/mailnews/mailnews.js index 469d13f90aa..6ce7b175d95 100644 --- a/mozilla/mailnews/mailnews.js +++ b/mozilla/mailnews/mailnews.js @@ -547,6 +547,10 @@ pref("mail.compose.add_undisclosed_recipients", true); pref("mail.purge.min_delay",480); pref("mail.purge.timer_interval",5); +// set to true if viewing a message should mark it as read only if the msg is viewed for a specified time interval in seconds +pref("mailnews.mark_message_read.delay", false); +pref("mailnews.mark_message_read.delay.interval", 5); // measured in seconds + // require a password before showing imap or local headers in thread pane pref("mail.password_protect_local_cache", false); // to reduce forking in the js / C++ diff --git a/mozilla/modules/libpref/src/init/mailnews.js b/mozilla/modules/libpref/src/init/mailnews.js index 469d13f90aa..6ce7b175d95 100644 --- a/mozilla/modules/libpref/src/init/mailnews.js +++ b/mozilla/modules/libpref/src/init/mailnews.js @@ -547,6 +547,10 @@ pref("mail.compose.add_undisclosed_recipients", true); pref("mail.purge.min_delay",480); pref("mail.purge.timer_interval",5); +// set to true if viewing a message should mark it as read only if the msg is viewed for a specified time interval in seconds +pref("mailnews.mark_message_read.delay", false); +pref("mailnews.mark_message_read.delay.interval", 5); // measured in seconds + // require a password before showing imap or local headers in thread pane pref("mail.password_protect_local_cache", false); // to reduce forking in the js / C++