mirror of
https://github.com/dducret/kopano-webapp-passwd
synced 2026-07-27 18:42:47 +02:00
13 lines
No EOL
368 B
PHP
13 lines
No EOL
368 B
PHP
<?php
|
|
/** Enable the passwd plugin for all clients **/
|
|
define('PLUGIN_PASSWD_USER_DEFAULT_ENABLE', true);
|
|
|
|
/** Define zarafa installtion uses LDAP **/
|
|
define('PLUGIN_PASSWD_LDAP', false);
|
|
|
|
/** Base DN to access LDAP users **/
|
|
define('PLUGIN_PASSWD_LDAP_BASEDN', 'dc=example,dc=com');
|
|
|
|
/** URI to access LDAP server **/
|
|
define('PLUGIN_PASSWD_LDAP_URI', 'localhost');
|
|
?>
|