<[EMAIL PROTECTED]>
X-Mailer: Apple Mail (2.926)
X-Virus-Scanned: ClamAV 0.92.1/7805/Wed Jul 23 14:27:56 2008 on zoom.lafn.org
X-Virus-Status: Clean

Add -S to the start line:  $qpopper -s -R


On Jul 23, 2008, at 04:57, Sasa wrote:


ive.org>
Subject: Re: Standalone mode & performance
Date: Wed, 23 Jul 2008 13:54:28 +0200
MIME-Version: 1.0
Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply- type=response
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2900.5512
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5512
X-Virus-Scanned: Maia Mailguard 1.0.1

"Randall Gellens" wrote:
If all of your users only retrieve mail through Qpopper, then you simply enable server mode in your configuration. That's all there is to it. No
upgrade needed.

When I have installed qpopper I have used --enable-standalone option:

./configure --enable-standalone

..and qpopper on boot is started with this script:

#!/bin/sh
#
. /etc/rc.d/init.d/functions
. /etc/sysconfig/network
[ ${NETWORKING} = "no" ] && exit 0
qpopper=/usr/local/sbin/popper
start() {
       action $"Starting POP3 daemon:" $qpopper -s -R
       RETVAL=$?
       [ $RETVAL -eq 0 ] && touch /var/lock/subsys/qpopper
}
stop() {
       action $"Stopping POP3 daemon:" killall popper
       RETVAL=$?
       [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/qpopper
}

RETVAL=0
case "$1" in
 start)
       # Start daemons.
       start
       ;;
 stop)
       # Stop daemons.
       stop
       ;;
 restart)
       stop
       start
       ;;
 *)
       echo $"Usage: $prog {start|stop|restart}"
       exit 1
esac
exit $RETVAL
start

..and I have:

[EMAIL PROTECTED] ~]# ps -ax|grep popper
19147 ?        S      0:00 /usr/local/sbin/popper -s -R

..now for to enable server-mode in my configuration what parameter I must
modify ?
Thanks in advance.

------

  Salvatore.




Reply via email to