summaryrefslogtreecommitdiff
path: root/scripts/proxsmtpd.sh
diff options
context:
space:
mode:
author(no author) <(no author)>2004-07-08 18:21:20 +0000
committer(no author) <(no author)@37549a05-7cf3-0310-b41a-658052d0713c>2004-07-08 18:21:20 +0000
commitc493a11b449f5071aed9adb34faa3e3dd85ea762 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /scripts/proxsmtpd.sh
parente650d1da777c76d94f023557b110725113a2b778 (diff)
New repository initialized by cvs2svn.
Diffstat (limited to 'scripts/proxsmtpd.sh')
-rw-r--r--scripts/proxsmtpd.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/scripts/proxsmtpd.sh b/scripts/proxsmtpd.sh
deleted file mode 100644
index fcc3493..0000000
--- a/scripts/proxsmtpd.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-###########################################################################
-# CONFIGURATION
-
-# Most configuration options are found in the proxsmtpd.conf file.
-# For more info see:
-# man proxsmtpd.conf
-
-# The prefix proxsmtpd was installed to
-prefix=/usr/local/
-
-# The location for pid file
-piddir=/var/run/
-
-###########################################################################
-# SCRIPT
-
-case $1 in
-start)
- mkdir -p $piddir
- $prefix/sbin/proxsmtpd -p $piddir/proxsmtpd.pid
- echo -n "proxsmtpd "
- ;;
-stop)
- [ -f $piddir/proxsmtpd.pid ] && kill `cat $piddir/proxsmtpd.pid`
- echo -n "proxsmtpd "
- ;;
-*)
- echo "usage: proxsmptd.sh {start|stop}" >&2
- ;;
-esac