diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 9493b3057..ef76c2a8d 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -627,6 +627,13 @@ $rcmail_config['autocomplete_max'] = 15; // available placeholders: {street}, {locality}, {zipcode}, {country}, {region} $rcmail_config['address_template'] = '{street}<br/>{locality} {zipcode}<br/>{country} {region}'; +// Matching mode for addressbook search (including autocompletion) +// 0 - partial (*abc*), default +// 1 - strict (abc) +// 2 - prefix (abc*) +// Note: For LDAP sources fuzzy_search must be enabled to use 'partial' or 'prefix' mode +$rcmail_config['addressbook_search_mode'] = 0; + // ---------------------------------- // USER PREFERENCES // ---------------------------------- |