#!/bin/sh
#
# This script should start the open-xchange sessiond part
# 
# Sebastian Kauss
#

SERVER=""
[ -f /etc/SuSE-release ] && SERVER=$(test "$HOSTTYPE" == "i386" && echo "-server")
OPTS=""

/usr/bin/java $SERVER $OPTS -ms20M -mx280M -Djava.net.preferIPv4Stack=true -Dopenexchange.propfile=/etc/open-xchange/groupware/system.properties -DappName=sessiondApp -Djava.library.path=/usr/lib/open-xchange -classpath /usr/lib/open-xchange/nas.jar:/usr/lib/open-xchange/comfiretools.jar:/usr/lib/open-xchange/intranet.jar:/usr/lib/open-xchange/sessiond.jar com.openexchange.sessiond.oxsessiond -P 33333 
