summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2002-07-30 13:16:43 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2002-07-30 13:16:43 +0000
commita9b731390ee76aece1ac59a854e4f803057b0df8 (patch)
tree4ab57f2163cbb5556978d3619dd972b64d4ade96 /mail
parentSmall HTTP server with support for GET, HEAD, POST, CGI, SSL, IPv6. (diff)
Update to exim-4.10.
This version brings exim-4.x to the point where serious production users may wish to consider it. Unfortunately, I don't have time for the exim -> exim-old and exim-devel >- exim transition, and won't have time to get to it for the next 10 days. Please be patient.
Notes
Notes: svn path=/head/; revision=63733
Diffstat (limited to 'mail')
-rw-r--r--mail/exim-devel/Makefile5
-rw-r--r--mail/exim-devel/distinfo4
-rw-r--r--mail/exim-devel/files/exim.sh27
-rw-r--r--mail/exim-devel/pkg-plist1
4 files changed, 33 insertions, 4 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile
index 26d2e15ebf8b..ffa1476a744d 100644
--- a/mail/exim-devel/Makefile
+++ b/mail/exim-devel/Makefile
@@ -22,8 +22,8 @@ USE_BZIP2= yes
MAN8= exim.8
-EXIM_VERSION= 4.05
-EXIM_DOCVERSION= 4.00
+EXIM_VERSION= 4.10
+EXIM_DOCVERSION= 4.10
PLIST_SUB+= EXIM_VERSION="${EXIM_VERSION}"
@@ -220,6 +220,7 @@ pre-install:
@PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
post-install:
+ ${INSTALL_SCRIPT} ${FILESDIR}/exim.sh ${PREFIX}/etc/rc.d
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/exim
${INSTALL_DATA} ${FILESDIR}/POST-INSTALL-NOTES ${PREFIX}/share/doc/exim
diff --git a/mail/exim-devel/distinfo b/mail/exim-devel/distinfo
index e8cdb374b175..afd4701097c9 100644
--- a/mail/exim-devel/distinfo
+++ b/mail/exim-devel/distinfo
@@ -1,2 +1,2 @@
-MD5 (exim-4.05.tar.bz2) = 105becb2c0103b4e741644740855c462
-MD5 (exim-texinfo-4.00.tar.bz2) = 18983a980fda2c4d375072c7efe3d994
+MD5 (exim-4.10.tar.bz2) = eb92cbba59bb2320b9912c46cd3fa4d0
+MD5 (exim-texinfo-4.10.tar.bz2) = 2a2a34a2457d249d568a58e985f263c0
diff --git a/mail/exim-devel/files/exim.sh b/mail/exim-devel/files/exim.sh
new file mode 100644
index 000000000000..09e3e6ef9eb6
--- /dev/null
+++ b/mail/exim-devel/files/exim.sh
@@ -0,0 +1,27 @@
+#!/bin/sh
+#
+# $Id$
+#
+# Note that 'pidfile' may need to be changed if 'args' is altered; see
+# the description of the 'pid_file_path' Exim configuration option in
+# the Exim Specification.
+#
+args='-bd -q30m'
+pidfile='/var/run/exim.pid'
+
+case "$1" in
+start)
+ [ -x /usr/local/sbin/exim ] && /usr/local/sbin/exim ${args} && \
+ echo -n ' exim'
+ ;;
+stop)
+ kill `cat ${pidfile}` && echo -n ' exim'
+ ;;
+*)
+ echo "Usage: `basename $0` {start|stop}" >&2
+ exit 64
+ ;;
+esac
+
+exit 0
+
diff --git a/mail/exim-devel/pkg-plist b/mail/exim-devel/pkg-plist
index dbf832172a16..8b2dd3f0bc43 100644
--- a/mail/exim-devel/pkg-plist
+++ b/mail/exim-devel/pkg-plist
@@ -1,4 +1,5 @@
etc/exim/configure.default
+etc/rc.d/exim.sh
info/exim.info
info/exim_filter.info
sbin/exim