..my /etc/rc.d/init.d/popper is:

#!/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

Thanks.

------

  Salvatore.


----- Original Message ----- From: "Sasa" <[EMAIL PROTECTED]>
To: "Subscribers of Qpopper" <qpopper@lists.pensive.org>
Sent: Tuesday, July 08, 2008 10:45 PM
Subject: Standalone mode & performance


Hi, I use Qpopper 4.0.9 on Fedora Core 5 and hardware resource are:

CPU: Intel Xeon 3.00 GHz
Memory: 3 GB RAM
Disk: two hard disk from 72.8 GB/10.000 RPM/WIDE ULTRA320 SCSI in RAID 1

I have about 700 users and from a few days I have a dramatic perfomace problem because in some hours the queue increase in excess mode and I have more 800 mails in spool directory !I use qpopper in standalone mode and I use -s -R options:

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

..if popper service is stopped the queue are emptied in a few minutes.
I have read the documentation about 'Perfomance' but I haven't solution for my problem, What can I do to solve my problem ?
Thanks in advance.

------

  Salvatore.




Reply via email to