aboutsummaryrefslogtreecommitdiffstats
path: root/clfs/default/saslauthd
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2014-03-05 13:16:40 -0600
committerWilliam Harrington <kb0iic@berzerkula.org>2014-03-05 13:16:40 -0600
commitd3078b183348e703cf5928128d2706c31fc7d870 (patch)
treed63a12e38bbf721d79d3181351e1efc1bfc22af9 /clfs/default/saslauthd
Initial commit.
Diffstat (limited to 'clfs/default/saslauthd')
-rw-r--r--clfs/default/saslauthd36
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