Update kernel space check.
[carnet-upgrade.git] / files / etc / default / saslauthd.expect
1 #
2 # Settings for saslauthd daemon
3 #
4
5 # Should saslauthd run automatically on startup? (default: no)
6 START=yes
7
8 # Which authentication mechanisms should saslauthd use? (default: pam)
9 #
10 # Available options in this Debian package:
11 # getpwent  -- use the getpwent() library function
12 # kerberos5 -- use Kerberos 5
13 # pam       -- use PAM
14 # rimap     -- use a remote IMAP server
15 # shadow    -- use the local shadow password file
16 # sasldb    -- use the local sasldb database file
17 # ldap      -- use LDAP (configuration is in /etc/saslauthd.conf)
18 #
19 # Only one option may be used at a time. See the saslauthd man page
20 # for more information.
21 #
22 # Example: MECHANISMS="pam"
23 MECHANISMS="pam"
24
25 # Additional options for this mechanism. (default: none)
26 # See the saslauthd man page for information about mech-specific options.
27 MECH_OPTIONS=""
28
29 # How many saslauthd processes should we run? (default: 5)
30 # A value of 0 will fork a new process for each connection.
31 THREADS=5
32
33 # Other options (default: -c)
34 # See the saslauthd man page for information about these options.
35 #
36 # Example for postfix users: "-c -m /var/spool/postfix/var/run/saslauthd"
37 # Note: See /usr/share/doc/sasl2-bin/README.Debian
38 OPTIONS="-c"
39 PARAMS="-m /var/spool/postfix/var/run/saslauthd"
40 PIDFILE="/var/spool/postfix/var/run/saslauthd/saslauthd.pid"
41 PWDIR="/var/spool/postfix/var/run/saslauthd"
42 [ ! -L /var/run/saslauthd -a -d /var/spool/postfix/var/run/saslauthd -a ! -d /var/run/saslauthd ] && ln -s /var/spool/postfix/var/run/saslauthd /var/run/saslauthd || true