summaryrefslogtreecommitdiff
path: root/postfix/postfix.rc
diff options
context:
space:
mode:
authorTim Biermann <tbier@posteo.de>2021-01-31 17:59:39 +0000
committerTim Biermann <tbier@posteo.de>2021-01-31 18:04:34 +0000
commit6770509710cb14a0aff6d82f40ba1bad66ecc11f (patch)
tree68f26f1cccc5a049f5fb7746ab5d38f841a6ea8a /postfix/postfix.rc
parentde4858fe2d5d3cface3968cde73e70ebcb961ba8 (diff)
downloadopt-6770509710cb14a0aff6d82f40ba1bad66ecc11f.tar.gz
opt-6770509710cb14a0aff6d82f40ba1bad66ecc11f.tar.xz
postfix: deleted unmaintained port
Diffstat (limited to 'postfix/postfix.rc')
-rw-r--r--postfix/postfix.rc52
1 files changed, 0 insertions, 52 deletions
diff --git a/postfix/postfix.rc b/postfix/postfix.rc
deleted file mode 100644
index 925885e81..000000000
--- a/postfix/postfix.rc
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-######################################################################
-# postfix: starts/stops postfix daemon
-# description: Postfix is a Mail Transport Agent, which is the program
-# that moves mail from one machine to another.
-######################################################################
-
-daemon="/usr/sbin/postfix"
-config="/etc/postfix"
-
-######################################################################
-# Sanity Check
-######################################################################
-[ -x $daemon ] || exit 1
-
-######################################################################
-# Uncomment these if you want to rebuild aliases on restart
-######################################################################
-#/usr/sbin/postalias hash:$config/aliases
-#/usr/sbin/postmap hash:$config/{access,canonical,relocated,transport,virtual}
-#/usr/sbin/postmap hash:$config/access.{client,helo,sender,recpnt}
-
-######################################################################
-# Start/Stop/Reload/Status Functions
-######################################################################
-status() {
- base=${daemon##*/}
- dpid=`pidof -o $$ -o $PPID -o %PPID -x ${base}`
- if [ "$dpid" != "" ]; then
- echo "${base} (pid $dpid) is running..."
- elif [ -s /var/run/${base}.pid ]; then
- echo "${base} is dead but pid file exists..."
- else
- echo "${base} is stopped."
- fi
- return
-}
-######################################################################
-# See how we were called
-######################################################################
-case "$1" in
- start) $daemon start ;;
- stop) $daemon stop ;;
- reload) $daemon reload ;;
- restart) $daemon reload ;;
- status) status ;;
- abort) $daemon abort ;;
- flush) $daemon flush ;;
- check) $daemon check ;;
- *) echo "Usage: $0 {start|stop|reload|restart|status|abort|flush|check}" ; exit 1 ;;
-esac
-exit $?

Generated by cgit