diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-06-15 14:12:44 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-06-15 14:12:44 +0000 |
commit | e700cab220a740a5e6aa1bccd26f9397332af1b4 (patch) | |
tree | ddaf55ff4e406ba89e0951d238e1372986c57a33 /mail/exim-devel/files | |
parent | 05a622425daee7270307b313837e12f312a88577 (diff) | |
download | FreeBSD-ports-e700cab220a740a5e6aa1bccd26f9397332af1b4.zip FreeBSD-ports-e700cab220a740a5e6aa1bccd26f9397332af1b4.tar.gz |
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>
Diffstat (limited to 'mail/exim-devel/files')
-rw-r--r-- | mail/exim-devel/files/exim.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/mail/exim-devel/files/exim.sh b/mail/exim-devel/files/exim.sh deleted file mode 100644 index 6e25c5a..0000000 --- a/mail/exim-devel/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 |