aboutsummaryrefslogtreecommitdiffstats
path: root/mail/milter-bogom
diff options
context:
space:
mode:
authorak <ak@FreeBSD.org>2017-04-18 23:15:06 +0800
committerak <ak@FreeBSD.org>2017-04-18 23:15:06 +0800
commit8b9ddc92a3b8adbe7a4760799b3c915a6f0bb94f (patch)
tree10deab438978a080be185166041c3a8110e6725d /mail/milter-bogom
parente2f332dca5c8032cdb3a5ff4b31b7039063a9c6c (diff)
downloadfreebsd-ports-graphics-8b9ddc92a3b8adbe7a4760799b3c915a6f0bb94f.tar.gz
freebsd-ports-graphics-8b9ddc92a3b8adbe7a4760799b3c915a6f0bb94f.tar.zst
freebsd-ports-graphics-8b9ddc92a3b8adbe7a4760799b3c915a6f0bb94f.zip
- Remove vestiges of pkg-req support
Differential Revision: https://reviews.freebsd.org/D5 Approved by: bapt
Diffstat (limited to 'mail/milter-bogom')
-rw-r--r--mail/milter-bogom/pkg-req35
1 files changed, 0 insertions, 35 deletions
diff --git a/mail/milter-bogom/pkg-req b/mail/milter-bogom/pkg-req
deleted file mode 100644
index d4abc371761..00000000000
--- a/mail/milter-bogom/pkg-req
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-
-need_milter() {
-
-echo "****************************************************************"
-echo "* You need at least the version 8.13 of sendmail compiled with *"
-echo "* milter support enabled. *"
-echo "****************************************************************"
-exit 1;
-
-}
-
-# check if we are not installing
-if [ "$2" != "INSTALL" ];
-then
- exit 0;
-fi
-
-# check if sendmail have the MILTER API
-sendmail -d0.1 -bv root 2>&1 | grep MILTER > /dev/null
-
-if [ $? != 0 ];
-then
- need_milter;
-fi
-
-# Check if sendmail is at least 8.13
-sendmail -d0.1 -bv root 2>& 1 | grep Version | awk '{ if ( $2 > "8.13" )\
-exit 0; else exit 1;}'
-
-if [ $? != 0 ];
-then
- need_milter;
-fi
-exit 0