diff options
author | William Harrington <kb0iic@cross-lfs.org> | 2014-04-26 20:51:13 -0500 |
---|---|---|
committer | William Harrington <kb0iic@cross-lfs.org> | 2014-04-26 20:51:13 -0500 |
commit | d428b64adcd7aa90681669315f7ff847bb2af3ea (patch) | |
tree | b80fe7868fac840476e45960edfe3a990dc23e79 /clfs/default/saslauthd |
Initial commit.
Diffstat (limited to 'clfs/default/saslauthd')
-rw-r--r-- | clfs/default/saslauthd | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/clfs/default/saslauthd b/clfs/default/saslauthd new file mode 100644 index 0000000..4bb2930 --- /dev/null +++ b/clfs/default/saslauthd @@ -0,0 +1,36 @@ +# Begin /etc/default/saslauthd + +# Which authentication mechanisms should saslauthd use? (default: pam) +# +# Available options in this package: +# getpwent -- use the getpwent() library function +# kerberos5 -- use Kerberos 5 +# pam -- use PAM +# rimap -- use a remote IMAP server +# shadow -- use the local shadow password file +# sasldb -- use the local sasldb database file +# ldap -- use LDAP (configuration is in /etc/saslauthd.conf) +# +# Only one option may be used at a time. See the saslauthd man page +# for more information. +# +# Example: MECHANISMS="shadow" +MECHANISMS="shadow" + +# Additional options for this mechanism. (default: none) +# See the saslauthd man page for information about mech-specific options. +# Note: Specify "-O options" in the following variable or saslauthd will fail. +MECH_OPTIONS="" + +# How many saslauthd processes should we run? (default: 5) +# A value of 0 will fork a new process for each connection. +THREADS=5 + +# Other options (default: -c -m /var/run/saslauthd) +# Note: You MUST specify the -m option or saslauthd won't run! +# +# See the saslauthd man page and the output of 'saslauthd -h' for general +# information about these options. +SASLAUTHD_OPTS="-c -m /var/run/saslauthd" + +# End /etc/default/saslauthd |