Latest Release
- Release candidate 2.0rc2 (07/03/12)
- Release candidate 2.0rc1 (23/12/11)
- Stable version 1.2.2 (09/02/12)
- Nightly builds available to test
Events
- 10/10/2011 - LDAPCon 2011 (Heidelberg, Germany)
- 13/06/2011 - RMLL (Strasbourg, France)
- 9/07/2010 - RMLL (Bordeaux, France)
Community
Get help, contribute or find professional services ...
Find out more!
Search
Open source connector to synchronize identities to a LDAP directory
from any data source including any database with a JDBC connector,
another LDAP server or flat files ...
Download | Read more... | Get started!
Download | Read more... | Get started!
This configuration show how to test the user password validity before to update it on the Active directory database.
This script test the ability to connect to the AD using the canBind function and force the UnicodePwd update if it can't connect. If it can connect, it simply re-push the existing Active Directory unicodePWD
lsc.syncoptions.MySyncTask.unicodePwd.force_value = \ if ( ! LDAP.canBind("ldaps://ad.domain.org:636/dc=domain,dc=org", \ "cn=" + srcBean.getAttributeValueById("uid") + ",ou=People,dc=domain,dc=org", \ srcBean.getAttributeValueById("password"))) \ { AD.getUnicodePwd(srcBean.getAttributeValueById("password")) } \ else { dstBean.getAttributeValueById("unicodePwd") };


