aboutsummaryrefslogtreecommitdiffstats
path: root/mail/postsrsd
diff options
context:
space:
mode:
authorjbeich <jbeich@FreeBSD.org>2015-05-03 15:33:55 +0800
committerjbeich <jbeich@FreeBSD.org>2015-05-03 15:33:55 +0800
commit18412c2554778ebf66c1f5fd4ab588e407a9bf15 (patch)
tree4eea3fe3b498b38260954cf05e347c011ee7bb13 /mail/postsrsd
parentcab1ca0d84b2756c4544cc07be1998d83ca57a42 (diff)
downloadfreebsd-ports-gnome-18412c2554778ebf66c1f5fd4ab588e407a9bf15.tar.gz
freebsd-ports-gnome-18412c2554778ebf66c1f5fd4ab588e407a9bf15.tar.zst
freebsd-ports-gnome-18412c2554778ebf66c1f5fd4ab588e407a9bf15.zip
mail/postsrsd: fix handling of postsrsd_exclude_domains in rc.d script
PR: 199797 Submitted by: idefix@fechner.net Approved by: ports@bsdserwis.com (maintainer)
Diffstat (limited to 'mail/postsrsd')
-rw-r--r--mail/postsrsd/Makefile1
-rw-r--r--mail/postsrsd/files/postsrsd.in2
2 files changed, 2 insertions, 1 deletions
diff --git a/mail/postsrsd/Makefile b/mail/postsrsd/Makefile
index 72a471fd10d5..8b494fff0ac2 100644
--- a/mail/postsrsd/Makefile
+++ b/mail/postsrsd/Makefile
@@ -3,6 +3,7 @@
PORTNAME= postsrsd
PORTVERSION= 1.1
+PORTREVISION= 1
CATEGORIES= mail
MAINTAINER= ports@bsdserwis.com
diff --git a/mail/postsrsd/files/postsrsd.in b/mail/postsrsd/files/postsrsd.in
index b479f8c1d9de..63ee90c9aacc 100644
--- a/mail/postsrsd/files/postsrsd.in
+++ b/mail/postsrsd/files/postsrsd.in
@@ -67,7 +67,7 @@ if [ "x${postsrsd_idle_timeout}" != "x" ];then
postsrsd_idle_timeout="-t ${postsrsd_idle_timeout}"
fi
if [ "x${postsrsd_exclude_domains}" != "x" ];then
- postsrsd_exclude_domains="-X ${postsrsd_exclude_domains}"
+ postsrsd_exclude_domains="-X${postsrsd_exclude_domains}"
fi
command_args=" -D ${_uid_prefix} ${postsrsd_uid} -p ${pidfile} ${postsrsd_domain} ${postsrsd_secret} ${postsrsd_forward_port} ${postsrsd_reverse_port} ${postsrsd_idle_timeout} ${postsrsd_exclude_domains} ${postsrsd_flags}"