ldapscanner.cfg.dist 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [server]
  2. # What's needed to connect?
  3. # Hosts can be many, separate them with commas
  4. hosts=ldap.host,another.host
  5. port=636
  6. ldaps=1
  7. timeout=60
  8. [search]
  9. # Put in what records you wanna find (and diff over time) here.
  10. # Surround your filter with parens, especially if you need to
  11. # do searches on multiple things, a la
  12. # (&(objectClass=capedAvenger)(o=LegionOfDoom))
  13. base=ou=superheroes,dc=marvel,dc=comics
  14. filter=(objectClass=capedAvenger)
  15. ignore_attrs=bigBinaryBlobField,crapIDontCareAbout
  16. [creds]
  17. # If you need to auth with the server in order to get the
  18. # records you need, then enter the details below.
  19. # If not, don't.
  20. dn=heroName=Lobo,ou=superheroes,dc=marvel,dc=comics
  21. pass=S4NT4DR00LZ
  22. [display]
  23. # Put anything you don't want displayed in your cron email here.
  24. # Separated by commas, just like hosts
  25. # Binary blob fields like jpegPhoto get annoying quick.
  26. ignore_attrs=jpegPhoto
  27. [prefs]
  28. # Loglevels:
  29. # warn: warn on errors, print diff.
  30. # error: die on errors, print diff. Recommended for crons.
  31. # info: die on errors, print informational messages
  32. # debug: die on errors, also print debug & info messages
  33. loglevel=error