Active directory Tuleap-Active Directory-用户自动挂起

Active directory Tuleap-Active Directory-用户自动挂起,active-directory,ldap,tuleap,Active Directory,Ldap,Tuleap,所以我被这个问题困住了。我花了好几个小时阅读并试图解决这个问题。有人能告诉我我做错了什么吗?这是我的 ldap公司 i have integrated Tuleap with active directory, i can able to add the users with the project.The Problem is that the users are getting suspended automatically for every 24 hrs. 禁用ldap_daily_s

所以我被这个问题困住了。我花了好几个小时阅读并试图解决这个问题。有人能告诉我我做错了什么吗?这是我的 ldap公司

i have integrated Tuleap with active directory, i can able to add the users with the project.The Problem is that the users are getting suspended automatically for every 24 hrs.

禁用ldap_daily_sync,您应该可以:

<?php
$sys_ldap_server = '10.10.100.10';
$sys_ldap_dn   = 'DC=xx,DC=xx,DC=com';
$sys_ldap_bind_dn = "Ldapquery@xxx.xxx-xxx.com";
$sys_ldap_bind_passwd = "xxxxxnnn";
$sys_ldap_uid   = 'sAMAccountname';
$sys_ldap_eduid = 'sAMAccountname';
$sys_ldap_people_dn = 'DC=xxx,DC=xxx-xxx,DC=xxx';
$sys_ldap_search_user='(|(sAMAccountname=%words%)(cn=%words%)(mail=%words%))';
$sys_ldap_tooltip_search_user='(&(|(sn=%words%*) (cn=%words%*)(department=%words%*) 
(givenName=%words%*)(sAMAccountname=%words%*))(!(givenName=BoiteVocale))(sAMAccountname=*))';
$sys_ldap_tooltip_search_attrs='sAMAccountname;sn;givenName;cn;name;displayName;department';
$sys_ldap_default_user_status = 'A';
$sys_ldap_svn_auth = 0;
$sys_ldap_daily_sync = 1;
$sys_ldap_user_management = 1;
$sys_ldap_grp_enabled   = 0;
$sys_ldap_grp_dn        = ' ';
$sys_ldap_grp_cn        = ' ';
$sys_ldap_grp_member    = ' ';
?>