Skip to content

Commit

Permalink
Changed config settings
Browse files Browse the repository at this point in the history
  • Loading branch information
craig552uk committed Jan 15, 2011
1 parent c568cec commit e69931f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ldap-raplet.php
Expand Up @@ -33,19 +33,19 @@
// LDAP Server Details
$ldap_server['hostname'] = "localhost";
$ldap_server['port'] = "389";
$ldap_server['bind_rdn'] = "cn=binduser,o=org";
$ldap_server['bind_pass'] = "b1ndpa55";
$ldap_server['base_dn'] = "ou=people,o=org";
$ldap_server['bind_rdn'] = "cn=admin,dc=example,dc=com";
$ldap_server['bind_pass'] = "passw0rd";
$ldap_server['base_dn'] = "ou=People,dc=example,dc=com";

// Required attributes (lower case) and label strings in display order
$ldap_attributes = array (
'uid' => 'User Name',
'cn' => 'Name',
'displayName' => 'Name',
'o' => 'Organisation',
'title' => 'Job Title',
'ou' => 'Department',
'mail' => 'Email',
'telephonenumber' => 'Tel',
'l' => 'Office'
'mobile' => 'Mob'
);

// JSON Response CSS and JavaScript
Expand Down

0 comments on commit e69931f

Please sign in to comment.