summaryrefslogtreecommitdiff
path: root/roundcubemail/config
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-23 12:38:44 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-23 12:38:44 +0000
commitd065ff49de9e91f1666e89eda9c316a10b8cd307 (patch)
tree952d4426c82241046671247bb3f5f92f9208114f /roundcubemail/config
parent1e4c12929788f1283847c78ace06ea6271c970e5 (diff)
Do serverside addressbook queries for autocompletion (#1485531) + make autocompletion list clickable
git-svn-id: https://svn.roundcube.net/trunk@2081 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
-rw-r--r--roundcubemail/config/main.inc.php.dist5
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist
index c4a62b1f8..d9ef3d343 100644
--- a/roundcubemail/config/main.inc.php.dist
+++ b/roundcubemail/config/main.inc.php.dist
@@ -279,10 +279,13 @@ $rcmail_config['address_book_type'] = 'sql';
* '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();