<?php

// Domain name will be the part of e-mail address after @ part.
// If your LDAP user is 'testing' and $CONFIG_LDAP['domain_name'] is 'yourdomain.com',
// the e-mail address that is created after logging in will be 'testing@yourdomain.com'
$CONFIG_LDAP['user_domain'] = 'yourdomain.com';

// LDAP authorization server. You can enter IP address or host name
$CONFIG_LDAP['auth_server'] = '127.0.0.1';

// Search DN of the LDAP server. This is where your users are located in the LDAP server.
$CONFIG_LDAP['dn'] = 'ou=people, dc=directory, dc=yoursite, dc=com';

// LDAP connection protocol. Set 3 if you don't know anything about it.
$CONFIG_LDAP['protocol'] = 3;

?>
