source: systemd-units/blfs/default/saslauthd@ 7178f6d

krejzi/svn
Last change on this file since 7178f6d was 7178f6d, checked in by Krejzi <krejzi@…>, 10 years ago

Rebrand. Import systemd-units from systemd branch. Reset changelog.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd-ng@14734 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 1.2 KB
Line 
1# Begin /etc/default/saslauthd
2
3# Which authentication mechanisms should saslauthd use? (default: shadow)
4#
5# Available options in this package:
6# getpwent -- use the getpwent() library function
7# kerberos5 -- use Kerberos 5
8# pam -- use PAM
9# rimap -- use a remote IMAP server
10# shadow -- use the local shadow password file
11# sasldb -- use the local sasldb database file
12# ldap -- use LDAP (configuration is in /etc/saslauthd.conf)
13#
14# Only one option may be used at a time. See the saslauthd man page
15# for more information.
16#
17# Example: MECHANISMS="shadow"
18MECHANISMS="shadow"
19
20# Additional options for this mechanism. (default: none)
21# See the saslauthd man page for information about mech-specific options.
22# Note: Specify "-O options" in the following variable or saslauthd will fail.
23MECH_OPTIONS=""
24
25# How many saslauthd processes should we run? (default: 5)
26# A value of 0 will fork a new process for each connection.
27THREADS=5
28
29# Other options (default: -c -m /var/run/saslauthd)
30# Note: You MUST specify the -m option or saslauthd won't run!
31#
32# See the saslauthd man page and the output of 'saslauthd -h' for general
33# information about these options.
34SASLAUTHD_OPTS="-c -m /var/run/saslauthd"
35
36# End /etc/default/saslauthd
Note: See TracBrowser for help on using the repository browser.