diff options
author | Hugues Hiegel <root@paranoid> | 2014-08-05 16:46:22 +0200 |
---|---|---|
committer | Hugues Hiegel <root@paranoid> | 2014-08-05 16:46:22 +0200 |
commit | 59478e06c25303a790a0840ab2ac30662c4ef781 (patch) | |
tree | 8d5e964a8f94adaef41efebb0597629f11495c42 /plugins/compose_addressbook/config.inc.php.dist | |
parent | 7c494b677f9e470ee0d32e62cfa8dc709f39e748 (diff) |
c'est la merde..working
Diffstat (limited to 'plugins/compose_addressbook/config.inc.php.dist')
-rw-r--r-- | plugins/compose_addressbook/config.inc.php.dist | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/compose_addressbook/config.inc.php.dist b/plugins/compose_addressbook/config.inc.php.dist new file mode 100644 index 000000000..b2ba8f9c8 --- /dev/null +++ b/plugins/compose_addressbook/config.inc.php.dist @@ -0,0 +1,21 @@ +<?php + +// which addressbook do we show. this can contain any addressbooks you use, including those set by plugins. +// by default it's the same as the autocomplete_addressbooks setting. + +// $rcmail_config['compose_addressbooks'] = array('ldap'); +// $rcmail_config['compose_addressbooks'] = array('sql', 'static'); +// $rcmail_config['compose_addressbooks'] = array('sql'); + +// which mode of operation do we use. +// +// full - show the full addressbook in the popup window. this should work +// with most users, and is the default +// +// search - popup window starts up empty, and you can search for specific +// addresses. This is recommended for extremely large addressbooks +// containing thousands of addresses, and in most LDAP environments. + +$rcmail_config['compose_addressbook_mode'] = 'full'; + +?> |