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