diff options
author | jbeich <jbeich@FreeBSD.org> | 2015-05-03 15:33:55 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2015-05-03 15:33:55 +0800 |
commit | 18412c2554778ebf66c1f5fd4ab588e407a9bf15 (patch) | |
tree | 4eea3fe3b498b38260954cf05e347c011ee7bb13 /mail/postsrsd | |
parent | cab1ca0d84b2756c4544cc07be1998d83ca57a42 (diff) | |
download | freebsd-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/Makefile | 1 | ||||
-rw-r--r-- | mail/postsrsd/files/postsrsd.in | 2 |
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}" |