Changeset a0530a6 in github
- Timestamp:
- Jun 8, 2008 2:17:09 PM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 32b7092
- Parents:
- 7e78b2e
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
config/main.inc.php.dist (modified) (1 diff)
-
program/steps/mail/compose.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rc3ab7537 ra0530a6 1 1 CHANGELOG RoundCube Webmail 2 2 --------------------------- 3 4 2008/06/08 (alec) 5 ---------- 6 - Added option to disable autocompletion from selected LDAP address books (#1484922) 3 7 4 8 2008/06/07 (thomasb) -
config/main.inc.php.dist
r6444cf4 ra0530a6 272 272 * 'scope' => 'sub', // search mode: sub|base|list 273 273 * 'filter' => '', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act 274 * 'global_search' => true, // perform a global search for address auto-completion on compose 274 275 * 'fuzzy_search' => true); // server allows wildcard search 275 276 */ -
program/steps/mail/compose.inc
re47aadc ra0530a6 830 830 foreach ($CONFIG['ldap_public'] as $ldapserv_config) 831 831 { 832 if ($ldapserv_config['fuzzy_search'] != 1) 832 if ($ldapserv_config['fuzzy_search'] != 1 || 833 $ldapserv_config['global_search'] != 1) 833 834 { 834 835 continue; 835 }836 } 836 837 837 838 $LDAP = new rcube_ldap($ldapserv_config); … … 857 858 { 858 859 $OUTPUT->set_env('contacts', $a_contacts); 859 } 860 } 861 860 862 $OUTPUT->send('compose'); 863 861 864 ?>
Note: See TracChangeset
for help on using the changeset viewer.
