freebsd-ports/mail/openemm2013/files/patch-src__script__lib__config.sh
Kurt Jaeger bc3fc9f856 New port: mail/openemm2013
OpenEMM is a feature-rich web-based enterprise application for email
marketing, newsletters and service mails (transaction mails and
event or time triggered mails). OpenEMM offers a great user interface,
sophisticated bounce management, link tracking, lots of graphical
realtime statistics, a CMS module and a scripting feature to implement
individual tasks.

OpenEMM is the first open source application for e-mail marketing.
Its code base has been developed since 1999 and is used - as part
of the commercial software product E-Marketing Manager (EMM) - by
companies like IBM, Daimler, Siemens and Deutsche Telekom.

OpenEMM offers already more than 95% of the functionality of most
commercial products and some features most commercial products do
not offer right now (for example MySQL support and CMS functionality).

WWW: http://www.openemm.org

PR:		196516
Submitted by:	Horst Leitenmueller <horst.leitenmueller@liwest.at>
2015-10-17 16:41:29 +00:00

53 lines
1.8 KiB
Bash

--- src/script/lib/config.sh.orig 2013-09-11 08:30:38 UTC
+++ src/script/lib/config.sh
@@ -34,7 +34,7 @@ host="`uname -n | cut -d. -f1`"
#
# Set the base for the whole system ..
if [ ! "$BASE" ] ; then
- BASE="$HOME"
+ BASE="/usr/local/openemm2013"
fi
export BASE
optbase="$OPENEMM_SW"
@@ -101,7 +101,7 @@ loglast=0
#
# Sendmail location
#
-sendmail="$HOME/bin/smctrl"
+sendmail="/usr/local/openemm2013/bin/smctrl"
if [ ! -x $sendmail ]; then
sendmail="/usr/sbin/sendmail"
if [ ! -x $sendmail ] ; then
@@ -357,7 +357,7 @@ terminator() {
shift
if [ "$__pat" ] ; then
for sig in 15 9 ; do
- __run="`ps -ef | grep -- \"$__pat\" | grep -v grep | awk '{ print $2 }'`"
+ __run="`ps -aux | grep -- \"$__pat\" | grep -v grep | awk '{ print $2 }'`"
if [ "$__run" ] ; then
messagen "Stop $__pat program with signal $sig .. "
kill -$sig $__run >/dev/null 2>&1
@@ -378,12 +378,12 @@ softterm() {
repeat="on"
while [ $repeat = "on" ]; do
repeat="off"
- __run="`ps -ef | grep -- \"$__pat\" | grep -v grep | awk '{ print $2 }'`"
+ __run="`ps -aux | grep -- \"$__pat\" | grep -v grep | awk '{ print $2 }'`"
if [ "$__run" ] ; then
messagen "Stop $__pat program .. "
kill -15 $__run >/dev/null 2>&1
sleep 1
- __run="`ps -ef | grep -- \"$__pat\" | grep -v grep | awk '{ print $2 }'`"
+ __run="`ps -aux | grep -- \"$__pat\" | grep -v grep | awk '{ print $2 }'`"
if [ "$__run" ]; then
messagen "delaying $sv seconds .. "
sleep `expr $sv - 1`
@@ -409,7 +409,7 @@ mestopper() {
messagen "Creating $__fn, waiting for $__pat: "
touch "$__fn"
while true ; do
- __run="`ps -ef | grep -- \"$__pat\" | grep -v grep | awk '{ print $2 }'`"
+ __run="`ps -aux | grep -- \"$__pat\" | grep -v grep | awk '{ print $2 }'`"
if [ ! "$__run" ] ; then
break
fi