From 2fd975071a43147b054adaa857008f6ae2ee245f Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 28 Nov 2008 14:03:24 -0500 Subject: [PATCH] Option to check for new mails in all folders (#1484374) --- config/main.inc.php.dist | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index c4a62b1..b2c0056 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -279,9 +279,12 @@ * 'sort' => 'cn', // The field to sort the listing by. * 'scope' => 'sub', // search mode: sub|base|list * 'filter' => '', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act - * 'global_search' => true, // perform a global search for address auto-completion on compose * 'fuzzy_search' => true); // server allows wildcard search */ + +// An ordered array of the ids of the addressbooks that should be searched +// when populating address autocomplete fields server-side. ex: array('sql','Verisign'); +$rcmail_config['autocomplete_addressbooks'] = array('sql'); // don't allow these settings to be overriden by the user $rcmail_config['dont_override'] = array(); @@ -399,5 +402,8 @@ // Must be greater than or equal to 'min_keep_alive' and less than 'session_lifetime' $rcmail_config['keep_alive'] = 60; +// If true all folders will be checked for recent messages +$rcmail_config['check_all_folders'] = FALSE; + // end of config file ?> -- Gitblit v1.9.1