svncommit
2006-01-18 eea43f7c99d9b0884229996d7fb9b1e3d98df177
better explanation of ldap_public in config file. changed check for ldap public config to isset


2 files modified
30 ■■■■ changed files
config/main.inc.php.dist 28 ●●●● patch | view | raw | blame | history
program/steps/addressbook/ldapsearchform.inc 2 ●●● patch | view | raw | blame | history
config/main.inc.php.dist
@@ -131,19 +131,21 @@
// this string is used as a delimiter for message headers when sending
$rcmail_config['mail_header_delimiter'] = "\r\n";
// public ldap servers to search for contacts
$rcmail_config['ldap_public'] = false;
/** example config for Verisign directory
$rcmail_config['ldap_public']['Verisign'] = array('hosts'         => array('directory.verisign.com'),
                                                  'port'          => 389,
                                                  'base_dn'       => '',
                                                  'search_fields' => array('Email' => 'mail', 'Name' => 'cn'),
                                                  'name_field'    => 'cn',
                                                  'mail_field'    => 'mail',
                                                  'scope'         => 'sub',
                                                  'fuzzy_search'  => 0);
**/
// in order to enable public ldap search, create a config array
// like the Verisign example below. if you would like to test,
// simply uncomment the Verisign example.
/**
 *  example config for Verisign directory
 *
 *  $rcmail_config['ldap_public']['Verisign'] = array('hosts'         => array('directory.verisign.com'),
 *                                                    'port'          => 389,
 *                                                    'base_dn'       => '',
 *                                                    'search_fields' => array('Email' => 'mail', 'Name' => 'cn'),
 *                                                    'name_field'    => 'cn',
 *                                                    'mail_field'    => 'mail',
 *                                                    'scope'         => 'sub',
 *                                                    'fuzzy_search'  => 0);
 */
/***** these settings can be overwritten by user's preferences *****/
program/steps/addressbook/ldapsearchform.inc
@@ -26,7 +26,7 @@
function rcmail_ldap_public_search_form($attrib)
  {
  global $CONFIG, $JS_OBJECT_NAME, $OUTPUT; 
  if (!$CONFIG['ldap_public'])
  if (!isset($CONFIG['ldap_public']))
    {
    // no ldap servers to search
    show_message('noldapserver', 'warning');