> Hello,
>
> I'm begginer with lsc and i test it to synchonize a ldap zimbra with an
> openldap on local net.
> My zimbra server is at adress 192.168.1.201 and my openldap at
> 192.168.1.240.
>
Hello,
Some comments on your conf :
> lsc.tasks.salaries.srcService.pivotAttrs = employeeNumber
> lsc.tasks.salaries.srcService.filterId =
> (&(objectClass=organizationalPerson)(employeeNumber={employeeNumber}))
> lsc.tasks.salaries.dstService.pivotAttrs = employeeNumber
> lsc.tasks.salaries.dstService.filterId =
> (&(objectClass=inetOrgPerson)(employeeNumber={employeeNumber}))
Are you sure employeeType is the real pivot? It seems it does not appear
in your Zimbra directory. You have to select an attribute which is the
same in source and destination. If the name of the source attribute is
different than the destination attribute, you must use an OR LDAP filter,
like explained here:
http://tools.lsc-project.org/issues/show/35
> dn.people = ou=ou=Salaries,o=fal44,o=cdr44
You can delete this line.
> when i run :
> ant lsc::synchronize -Dsynchronize.parameters="-c all -s all -n"
>
You run with "-n" : this is dry run mode, so no modification will be done.
Please run this command to really synchronize:
ant lsc::synchronize -Dsynchronize.parameters="-c all -s all"
Cl?ment.