summaryrefslogtreecommitdiff
path: root/mail/exim-old/files
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2001-06-15 14:12:44 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2001-06-15 14:12:44 +0000
commitc06da2ea40294ac0a0c79dcc16c67d10d45750ef (patch)
treef41c14be466065907e97a6529f0c11c9f5325fbd /mail/exim-old/files
parentremove paraftp from Makefile (diff)
Exim is a drop-in replacement for sendmail. Since 4.1-RELEASE,
FreeBSD has shipped with mailwrapper(8), which facilitates the use of drop-in replacements for sendmail. Retire exim.sh in favour of the mailwrapper(8) approach. Requested by: AMAKAWA Shuhei <sa264@cam.ac.uk>
Notes
Notes: svn path=/head/; revision=44036
Diffstat (limited to 'mail/exim-old/files')
-rw-r--r--mail/exim-old/files/exim.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/mail/exim-old/files/exim.sh b/mail/exim-old/files/exim.sh
deleted file mode 100644
index 6e25c5a56d0b..000000000000
--- a/mail/exim-old/files/exim.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-args='-bd -q30m'
-
-case "$1" in
-start)
- [ -x /usr/local/sbin/exim ] && /usr/local/sbin/exim $args && echo -n ' exim'
- ;;
-stop)
- killall exim && echo -n ' exim'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0