Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

64 Zeilen
2.3KB

  1. #
  2. # Settings for saslauthd daemon
  3. # Please read /usr/share/doc/sasl2-bin/README.Debian for details.
  4. #
  5. # Should saslauthd run automatically on startup? (default: no)
  6. START=yes
  7. # Description of this saslauthd instance. Recommended.
  8. # (suggestion: SASL Authentication Daemon)
  9. DESC="SASL Authentication Daemon"
  10. # Short name of this saslauthd instance. Strongly recommended.
  11. # (suggestion: saslauthd)
  12. NAME="saslauthd"
  13. # Which authentication mechanisms should saslauthd use? (default: pam)
  14. #
  15. # Available options in this Debian package:
  16. # getpwent -- use the getpwent() library function
  17. # kerberos5 -- use Kerberos 5
  18. # pam -- use PAM
  19. # rimap -- use a remote IMAP server
  20. # shadow -- use the local shadow password file
  21. # sasldb -- use the local sasldb database file
  22. # ldap -- use LDAP (configuration is in /etc/saslauthd.conf)
  23. #
  24. # Only one option may be used at a time. See the saslauthd man page
  25. # for more information.
  26. #
  27. # Example: MECHANISMS="pam"
  28. MECHANISMS="ldap"
  29. # Additional options for this mechanism. (default: none)
  30. # See the saslauthd man page for information about mech-specific options.
  31. MECH_OPTIONS=""
  32. # How many saslauthd processes should we run? (default: 5)
  33. # A value of 0 will fork a new process for each connection.
  34. THREADS=5
  35. # Other options (default: -c -m /var/run/saslauthd)
  36. # Note: You MUST specify the -m option or saslauthd won't run!
  37. #
  38. # WARNING: DO NOT SPECIFY THE -d OPTION.
  39. # The -d option will cause saslauthd to run in the foreground instead of as
  40. # a daemon. This will PREVENT YOUR SYSTEM FROM BOOTING PROPERLY. If you wish
  41. # to run saslauthd in debug mode, please run it by hand to be safe.
  42. #
  43. # See /usr/share/doc/sasl2-bin/README.Debian for Debian-specific information.
  44. # See the saslauthd man page and the output of 'saslauthd -h' for general
  45. # information about these options.
  46. #
  47. # Example for chroot Postfix users: "-c -m /var/spool/postfix/var/run/saslauthd"
  48. # Example for non-chroot Postfix users: "-c -m /var/run/saslauthd"
  49. #
  50. # To know if your Postfix is running chroot, check /etc/postfix/master.cf.
  51. # If it has the line "smtp inet n - y - - smtpd" or "smtp inet n - - - - smtpd"
  52. # then your Postfix is running in a chroot.
  53. # If it has the line "smtp inet n - n - - smtpd" then your Postfix is NOT
  54. # running in a chroot.
  55. OPTIONS="-c -m /var/spool/postfix/var/run/saslauthd"