1 Commits

Author SHA1 Message Date
Dustin Frisch 2883c1ca01
set seeAlso to originating DN 10 months ago
  1. 1
      src/main/java/de/hsfulda/informatik/LdapSync.java

1
src/main/java/de/hsfulda/informatik/LdapSync.java

@ -128,6 +128,7 @@ public class LdapSync {
}
e.addAttribute(new Attribute("homeDirectory", String.format(properties.getProperty("sync.dst.home"), cn)));
e.addAttribute(new Attribute("userPassword", "{SASL}" + cn));
e.addAttribute(new Attribute("seeAlso", s.getDN()));
return e;
}).collect(Collectors.toList());

Loading…
Cancel
Save