Toto je starší verze dokumentu!
Kerio Mail Server
Debian
- apt-get install libstdc++5
alien -c kerio ... dpkg -i kerio....
case "$1" in
start)
echo -n "Starting Kerio MailServer: "
ulimit -c unlimited
ulimit -s 2048
ulimit -n 4096
cd /opt/kerio/mailserver && ./mailserver
echo "OK"
;;
stop)
echo -n "Stopping Kerio MailServer: "
PID=`pidof mailserver`
if [ "$PID" ] ; then
kill $PID
echo "killing...."
else
echo "not running?"
fi
;;
esac
