Ignore:
Timestamp:
03/26/12 16:01:38 (12 years ago)
Author:
wmerlotto
Message:

Ticket #2557 - Finalizada as correções para Debian Squeeze e Centos 6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/INSTALL/debian/squeeze/etc/default/saslauthd

    r5797 r5818  
    1 # This needs to be uncommented before saslauthd will be run automatically 
     1# 
     2# Settings for saslauthd daemon 
     3# Please read /usr/share/doc/sasl2-bin/README.Debian for details. 
     4# 
     5 
     6# Should saslauthd run automatically on startup? (default: no) 
    27START=yes 
    38 
    4 # You must specify the authentication mechanisms you wish to use. 
    5 # This defaults to "pam" for PAM support, but may also include 
    6 # "shadow" or "sasldb", like this: 
    7 # MECHANISMS="pam shadow" 
     9# Description of this saslauthd instance. Recommended. 
     10# (suggestion: SASL Authentication Daemon) 
     11DESC="SASL Authentication Daemon" 
    812 
     13# Short name of this saslauthd instance. Strongly recommended. 
     14# (suggestion: saslauthd) 
     15NAME="saslauthd" 
     16 
     17# Which authentication mechanisms should saslauthd use? (default: pam) 
     18# 
     19# Available options in this Debian package: 
     20# getpwent  -- use the getpwent() library function 
     21# kerberos5 -- use Kerberos 5 
     22# pam       -- use PAM 
     23# rimap     -- use a remote IMAP server 
     24# shadow    -- use the local shadow password file 
     25# sasldb    -- use the local sasldb database file 
     26# ldap      -- use LDAP (configuration is in /etc/saslauthd.conf) 
     27# 
     28# Only one option may be used at a time. See the saslauthd man page 
     29# for more information. 
     30# 
     31# Example: MECHANISMS="pam" 
    932MECHANISMS="ldap" 
     33 
     34# Additional options for this mechanism. (default: none) 
     35# See the saslauthd man page for information about mech-specific options. 
     36MECH_OPTIONS="" 
     37 
     38# How many saslauthd processes should we run? (default: 5) 
     39# A value of 0 will fork a new process for each connection. 
     40THREADS=5 
     41 
     42# Other options (default: -c -m /var/run/saslauthd) 
     43# Note: You MUST specify the -m option or saslauthd won't run! 
     44# 
     45# WARNING: DO NOT SPECIFY THE -d OPTION. 
     46# The -d option will cause saslauthd to run in the foreground instead of as 
     47# a daemon. This will PREVENT YOUR SYSTEM FROM BOOTING PROPERLY. If you wish 
     48# to run saslauthd in debug mode, please run it by hand to be safe. 
     49# 
     50# See /usr/share/doc/sasl2-bin/README.Debian for Debian-specific information. 
     51# See the saslauthd man page and the output of 'saslauthd -h' for general 
     52# information about these options. 
     53# 
     54# Example for postfix users: "-c -m /var/spool/postfix/var/run/saslauthd" 
     55OPTIONS="-c -m /var/run/saslauthd" 
Note: See TracChangeset for help on using the changeset viewer.