Advertisement
_Skynet_

Untitled

Jul 6th, 2011
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. ##VERSION: $Id: authdaemonrc.in,v 1.8 2001/10/07 02:16:22 mrsam Exp $
  2. #
  3. # Copyright 2000-2001 Double Precision, Inc. See COPYING for
  4. # distribution information.
  5. #
  6. # authdaemonrc created from authdaemonrc.dist by sysconftool
  7. #
  8. # Do not alter lines that begin with ##, they are used when upgrading
  9. # this configuration.
  10. #
  11. # This file configures authdaemond, the resident authentication daemon.
  12. #
  13. # Comments in this file are ignored. Although this file is intended to
  14. # be sourced as a shell script, authdaemond parses it manually, so
  15. # the acceptable syntax is a bit limited. Multiline variable contents,
  16. # with the \ continuation character, are not allowed. Everything must
  17. # fit on one line. Do not use any additional whitespace for indentation,
  18. # or anything else.
  19.  
  20. ##NAME: authmodulelist:0
  21. #
  22. # The authentication modules that are linked into authdaemond. The
  23. # default list is installed. You may selectively disable modules simply
  24. # by removing them from the following list. The available modules you
  25. # can use are: authcustom authcram authuserdb authldap authmysql authpam
  26.  
  27. authmodulelist="authmysql"
  28.  
  29. ##NAME: authmodulelistorig:1
  30. #
  31. # This setting is used by Courier's webadmin module, and should be left
  32. # alone
  33.  
  34. authmodulelistorig="authcustom authcram authuserdb authldap authmysql authpam"
  35.  
  36. ##NAME: daemons:0
  37. #
  38. # The number of daemon processes that are started. authdaemon is typically
  39. # installed where authentication modules are relatively expensive: such
  40. # as authldap, or authmysql, so it's better to have a number of them running.
  41. # PLEASE NOTE: Some platforms may experience a problem if there's more than
  42. # one daemon. Specifically, SystemV derived platforms that use TLI with
  43. # socket emulation. I'm suspicious of TLI's ability to handle multiple
  44. # processes accepting connections on the same filesystem domain socket.
  45. #
  46. # You may need to increase daemons if as your system load increases. Symptoms
  47. # include sporadic authentication failures. If you start getting
  48. # authentication failures, increase daemons. However, the default of 5
  49. # SHOULD be sufficient. Bumping up daemon count is only a short-term
  50. # solution. The permanent solution is to add more resources: RAM, faster
  51. # disks, faster CPUs...
  52.  
  53. daemons=5
  54.  
  55. ##NAME: version:0
  56. #
  57. # When you have multiple versions of authdaemond.* installed, authdaemond
  58. # just picks the first one it finds. Set "version" to override that.
  59. # For example: version=authdaemond.plain
  60.  
  61. version=""
  62.  
  63. ##NAME: authdaemonvar:0
  64. #
  65. # authdaemonvar is here, but is not used directly by authdaemond. It's
  66. # used by various configuration and build scripts, so don't touch it!
  67.  
  68. authdaemonvar=/var/run/courier/authdaemon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement