diff options
author | Ashish SHUKLA <ashish@FreeBSD.org> | 2015-03-29 05:17:43 +0000 |
---|---|---|
committer | Ashish SHUKLA <ashish@FreeBSD.org> | 2015-03-29 05:17:43 +0000 |
commit | 1bef36aa0c07e536cc05752709dc48cee2588a2b (patch) | |
tree | 02d6370f485c59c7d74973ac62f6ee96f6acfead /mail/opensmtpd | |
parent | 6014ebaef2fc946f5fc971cd4c6d882acca60098 (diff) | |
download | ports-1bef36aa0c07e536cc05752709dc48cee2588a2b.tar.gz ports-1bef36aa0c07e536cc05752709dc48cee2588a2b.zip |
Notes
Diffstat (limited to 'mail/opensmtpd')
-rw-r--r-- | mail/opensmtpd/Makefile | 6 | ||||
-rw-r--r-- | mail/opensmtpd/files/pkg-deinstall.in | 2 | ||||
-rw-r--r-- | mail/opensmtpd/files/pkg-install.in | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/mail/opensmtpd/Makefile b/mail/opensmtpd/Makefile index 0eb5ed688510..28f13e0d0030 100644 --- a/mail/opensmtpd/Makefile +++ b/mail/opensmtpd/Makefile @@ -11,18 +11,20 @@ MASTER_SITES= http://www.opensmtpd.org/archives/ \ DISTNAME= ${PORTNAME}-${PORTVERSION}p1 MAINTAINER= ashish@FreeBSD.org -COMMENT= OpenSMTPD is a free MTA +COMMENT= Security- and simplicity-focused SMTP server from OpenBSD LICENSE= ISCL LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 -OPTIONS_DEFINE= CA_BUNDLE PAM SQLITE MYSQL PGSQL LDAP REDIS LIBASRDEVEL +OPTIONS_DEFINE= CA_BUNDLE PAM SQLITE MYSQL PGSQL LDAP REDIS LIBASRDEVEL \ + MAILERCONF OPTIONS_DEFAULT= CA_BUNDLE PAM CA_BUNDLE_DESC= Install CA bundle for OpenSSL LIBASRDEVEL_DESC= Use development version of libasr +MAILERCONF_DESC= Activate OpenSMTPD in mailer.conf(5) USES= libtool USE_OPENSSL= yes diff --git a/mail/opensmtpd/files/pkg-deinstall.in b/mail/opensmtpd/files/pkg-deinstall.in index 3c939c99eee1..cdc50001245a 100644 --- a/mail/opensmtpd/files/pkg-deinstall.in +++ b/mail/opensmtpd/files/pkg-deinstall.in @@ -5,7 +5,7 @@ TARGET=$2 PREFIX=$(echo %%PREFIX%% |sed -e 's,/,\\/,g') -if [ "$TARGET" = POST-DEINSTALL ]; then +if [ "$TARGET" = POST-DEINSTALL -a -z "%%MAILERCONF%%" ]; then sed -e '/[[:space:]]'$PREFIX'\/sbin\/smtpctl/d' \ -e '/[[:space:]]'$PREFIX'\/libexec\/opensmtpd\/makemap/d' \ -e 's/^### smtpd: //g' -i '' /etc/mail/mailer.conf diff --git a/mail/opensmtpd/files/pkg-install.in b/mail/opensmtpd/files/pkg-install.in index 899ad234742e..d86bb26627e9 100644 --- a/mail/opensmtpd/files/pkg-install.in +++ b/mail/opensmtpd/files/pkg-install.in @@ -3,7 +3,7 @@ PKGNAME=$1 TARGET=$2 -if [ "$TARGET" = POST-INSTALL ]; then +if [ "$TARGET" = POST-INSTALL -a -z "%%MAILERCONF%%" ]; then sed -e '/^[^#]/s/^/### smtpd: /g' -i '' /etc/mail/mailer.conf cat >>/etc/mail/mailer.conf <<EOF sendmail %%PREFIX%%/sbin/smtpctl |