> > In /var/log/messages apar tone de mesaje de genul celor de mai jos
> > Cum fac sa nu mai scrie in nestire?
> > PS.
> > Am instalata suita: Postfix-Cyrus-Web-Cyradm+amavisd-new-clamav pe
> > fedora.
>
> [....]
>
> Vezi in /etc/sysconfig/saslauthd cu ce optiuni e pornit saslauthd-ul
> si verifica si /etc/init.d/saslauthd sa-l porneasca fara debugging.

fisierul /etc/sysconfig/saslauthd la mine nu exista iar fisierul
/etc/init.d/saslauthd este de forma:

#! /bin/bash
#
# saslauthd      Start/Stop the SASL authentication daemon.
#
# chkconfig: - 95 05
# description: saslauthd is a server process which handles plaintext \
#              authentication requests on behalf of the cyrus-sasl library.
# processname: saslauthd

# Source function library.
. /etc/init.d/functions

# Source our configuration file for these variables.
SOCKETDIR=/var/run/saslauthd
#MECH=shadow
MECH=pam
FLAGS=
if [ -f /etc/sysconfig/saslauthd ] ; then
 . /etc/sysconfig/saslauthd
fi

RETVAL=0

# Set up some common variables before we launch into what might be
# considered boilerplate by now.
prog=saslauthd
path=/usr/sbin/saslauthd

start() {
 echo -n $"Starting $prog: "
 daemon $path -m $SOCKETDIR -a $MECH $FLAGS
 RETVAL=$?
 echo
 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$prog
 return $RETVAL
}

stop() {
 echo -n $"Stopping $prog: "
 killproc $path
 RETVAL=$?
 echo
 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$prog
 return $RETVAL
}

restart() {
   stop
 start
}

case "$1" in
  start)
   start
 ;;
  stop)
   stop
 ;;
  restart)
   restart
 ;;
  status)
 status $path
 ;;
  condrestart)
   [ -f /var/lock/subsys/$prog ] && restart || :
 ;;
  *)
 echo $"Usage: $0 {start|stop|status|reload|restart|condrestart}"
 exit 1
esac

exit $?

nu vad ceva legat de debug...



--- 
Detalii despre listele noastre de mail: http://www.lug.ro/


Raspunde prin e-mail lui