authldaprc
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:3k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. # $Id: authldaprc,v 1.4 2000/05/29 21:01:30 mrsam Exp $
  2. #
  3. # This configuration file specifies LDAP authentication parameters
  4. #
  5. # The format of this file must be as follows:
  6. #
  7. # field[spaces|tabs]value
  8. #
  9. # That is, the name of the field, followed by spaces or tabs, followed by
  10. # field value.  No trailing spaces.
  11. #
  12. # Here are the fields:
  13. # Location of your LDAP server:
  14. LDAP_SERVER ldap.example.com
  15. LDAP_PORT 389
  16. # Look for authentication here:
  17. LDAP_BASEDN o=example, c=com
  18. # You may or may not need to specify the following.  Because you've got
  19. # a password here, authldaprc should not be world-readable!!!
  20. LDAP_BINDDN cn=administrator, o=example, c=com
  21. LDAP_BINDPW toto
  22. # Timeout for LDAP search
  23. LDAP_TIMEOUT 5
  24. # Define this to have the ldap server authenticate passwords.  If LDAP_AUTHBIND
  25. # the password is validated by rebinding with the supplied userid and password.
  26. # If rebind succeeds, this is considered to be an authenticated request.  This
  27. # does not support CRAM-MD5 authentication, which requires userPassword.
  28. # LDAP_AUTHBIND 1
  29. # Here's the field on which we query
  30. LDAP_MAIL mail
  31. # The following domain will be appended by default, if not specified
  32. LDAP_DOMAIN example.com
  33. # The following two variables can be used to set everybody's uid and gid.
  34. # This is convenient if your LDAP specifies a bunch of virtual mail accounts
  35. # The values can be usernames or userids:
  36. # LDAP_GLOB_UID vmail
  37. # LDAP_GLOB_GID vmail
  38. #
  39. # We will retrieve the following attributes
  40. #
  41. # The HOMEDIR attribute MUST exist, and we MUST be able to chdir to it
  42. LDAP_HOMEDIR homeDirectory
  43. # The MAILDIR attribute is OPTIONAL, and specifies the location of the
  44. # mail directory.  If not specified, ./Maildir will be used
  45. LDAP_MAILDIR mailDir
  46. # The following variable, if defined, specifies the field containing the
  47. # maildir quota, see README.maildirquota for more information
  48. # LDAP_MAILDIRQUOTA maildirQuota
  49. # FULLNAME is optional, specifies the user's full name
  50. LDAP_FULLNAME cn
  51. # CLEARPW is the clear text password.  CRYPT is the crypted password.
  52. # ONE OF THESE TWO ATTRIBUTES IS REQUIRED.  If CLEARPW is provided, and
  53. # libhmac.a is available, CRAM authentication will be possible!
  54. LDAP_CLEARPW userPassword
  55. LDAP_CRYPTPW cryptPassword
  56. # Uncomment the following, and modify as appropriate, if your LDAP database
  57. # stores individual userids and groupids.  Otherwise, you must uncomment
  58. # LDAP_GLOB_UID and LDAP_GLOB_GID above.  LDAP_GLOB_UID and LDAP_GLOB_GID
  59. # specify a uid/gid for everyone.  Otherwise, LDAP_UID and LDAP_GID must
  60. # be defined as attributes for everyone.
  61. #
  62. # LDAP_UID uidNumber
  63. # LDAP_GID gidNumber