require_once('../lib/functions.php3'); require_once('../lib/ldap/functions.php3'); if ($config[ldap_write_server]) $ds = @ldap_connect($config[ldap_write_server]); else $ds = @ldap_connect($config[ldap_server]); if ($ds){ $r = @da_ldap_bind($ds,$config); if ($r){ list ($givenname,$sn) = split(' ',$Fcn,2); $dn = 'uid=' . $login . ',' . $config[ldap_default_new_entry_suffix]; $new_user_entry["objectclass"][0]="top"; $new_user_entry["objectclass"][1]="person"; $new_user_entry["objectclass"][2]="organizationalPerson"; $new_user_entry["objectclass"][3]="inetOrgPerson"; $new_user_entry["objectclass"][4]="radiusprofile"; $new_user_entry["cn"]="$Fcn"; $new_user_entry["sn"]="$sn"; $new_user_entry["givenname"]="$givenname"; $new_user_entry["mail"]="$Fmail"; $new_user_entry["telephonenumber"]="$Ftelephonenumber"; $new_user_entry["homephone"]="$Fhomephone"; $new_user_entry["mobile"]="$Fmobile"; $new_user_entry["ou"]="$Fou"; $new_user_entry["uid"]="$login"; if (is_file("../lib/crypt/$config[general_encryption_method].php3")){ include("../lib/crypt/$config[general_encryption_method].php3"); $passwd = da_encrypt($passwd); $new_user_entry[$attrmap['User-Password']] = '{' . "$config[general_encryption_method]" . '}' . $passwd; } else{ echo "Could not open encryption library file.Password will be clear text.\n"; $new_user_entry[$attrmap['User-Password']]="{clear}" . $passwd; } if ($config[ldap_debug] == 'true'){ print "DEBUG(LDAP): ldap_add(): DN='$dn'\n"; print "DEBUG(LDAP): ldap_add(): Entry Data:"; print_r($new_user_entry); print "\n"; } @ldap_add($ds,$dn,$new_user_entry); foreach($show_attrs as $key => $attr){ if ($attrmap["$key"] == 'none') continue; // // if value is the same as the default and the corresponding attribute in ldap does not exist or // the value is the same as that in ldap then continue // if ( check_defaults($$attrmap["$key"],'',$default_vals["$key"])) continue; if ( $$attrmap["$key"] == '') continue; unset($mod); $mod[$attrmap["$key"]] = $$attrmap["$key"]; if ($config[ldap_debug] == 'true'){ print "DEBUG(LDAP): ldap_mod_add(): DN='$dn'\n"; print "DEBUG(LDAP): ldap_mod_add(): Data:"; print_r($mod); print "\n"; } @ldap_mod_add($ds,$dn,$mod); } } if (@ldap_error($ds) == 'Success') echo "User was added in user database\n"; else echo "LDAP ERROR: " . ldap_error($ds) . "\n"; @ldap_close($ds); } ?>