mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-17 07:33:57 +00:00
Monotone-Parent: ea7589320f5747a3bd1bbec33e1bd8776e4041db Monotone-Revision: cc4b29880c63c661301ca909ec3695f67b0775dd Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2009-04-21T15:20:52 Monotone-Branch: ca.inverse.sogo
82 lines
2.2 KiB
Bash
Executable File
82 lines
2.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# SOGo daemon wrapper
|
|
#
|
|
# Copyright (C) 2007-2009 Inverse inc.
|
|
#
|
|
# Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
|
#
|
|
# This file is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This file is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; see the file COPYING. If not, write to
|
|
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
# Uncomment the following line for Oracle RAC. This is where
|
|
# should be located the tnsnames.ora.
|
|
#export TNS_ADMIN=/home/sogo
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
PIDFILE=/var/run/sogo/sogod.pid
|
|
else
|
|
PIDFILE=/var/run/sogo/sogod.$1
|
|
fi
|
|
|
|
if [ -d /usr/lib/GNUstep ]
|
|
then
|
|
. /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh
|
|
else
|
|
if [ -f /usr/share/GNUstep/Makefiles/GNUstep.sh ]
|
|
then
|
|
. /usr/share/GNUstep/Makefiles/GNUstep.sh
|
|
else
|
|
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
|
|
fi
|
|
fi
|
|
|
|
if [ -x $GNUSTEP_USER_ROOT/Tools/sogod ]; then
|
|
sogod="$GNUSTEP_USER_ROOT/Tools/sogod"
|
|
elif [ -x $GNUSTEP_LOCAL_ROOT/Tools/sogod ]; then
|
|
sogod="$GNUSTEP_LOCAL_ROOT/Tools/sogod"
|
|
elif [ -x $GNUSTEP_LOCAL_ROOT/Tools/Admin/sogod ]; then
|
|
sogod="$GNUSTEP_LOCAL_ROOT/Tools/Admin/sogod"
|
|
elif [ -x $GNUSTEP_SYSTEM_ROOT/Tools/sogod ]; then
|
|
sogod="$GNUSTEP_SYSTEM_ROOT/Tools/sogod"
|
|
elif [ -x $GNUSTEP_SYSTEM_ROOT/Tools/Admin/sogod ]; then
|
|
sogod="$GNUSTEP_SYSTEM_ROOT/Tools/Admin/sogod"
|
|
else
|
|
echo "Can't find sogod"
|
|
exit 1
|
|
fi
|
|
|
|
woport=`defaults read sogod WOPort`
|
|
if [ "$?" == "0" ]
|
|
then
|
|
startport=`echo $woport | awk '{print $3}' | sed -e 's/\(.*:\)//'`
|
|
else
|
|
startport=20000
|
|
fi
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
port=$startport
|
|
else
|
|
let "port=$startport + $1 - 1"
|
|
fi
|
|
listen=`echo $woport | awk '{ print $3 }' | sed -e 's/\([0-9]\+\)$/'$port'/g'`
|
|
|
|
# echo "SOGOD: $sogod" 2>&1
|
|
|
|
exec $sogod -WOPort $listen >> /var/log/sogo/sogod-$port.log 2>&1 &
|
|
echo $! > $PIDFILE
|