Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. {ldap_base, "ou=People,dc=foo,dc=bar,dc=pl"}.
  2. {ldap_uids, [{"mail", "%u@foo.bar.pl"}]}.
  3.  
  4.  
  5.  
  6. {mod_vcard_ldap, [
  7. {search, false},
  8. {ldap_filter, "(objectClass=inetOrgPerson)"},
  9. {ldap_vcard_map, [
  10. {"FN", "%s", ["cn"]}, %% example: "Imie Nazwisko"
  11. {"NICKNAME", "%s", ["cn"]},
  12. {"GIVEN", "%s", ["givenName"]},
  13. {"FIRST", "%s", ["givenName"]},
  14. {"LAST", "%s", ["sn"]},
  15. {"FAMILY", "%s", ["sn"]},
  16. {"EMAIL", "%s", ["mail"]},
  17. {"ORGNAME", "Firma Krzak", []},
  18. {"ORGUNIT", "%s", ["department"]},
  19. {"PHOTO", "%s", ["jpegPhoto"]},
  20. {"CTRY", "Polska", []},
  21. {"TEL", "%s", ["telephoneNumber"]},
  22. {"BDAY", "%s", ["birthDay"]}
  23. ]}
  24. ]},
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement