From owner-svn-ports-all@FreeBSD.ORG Sun May 3 07:33:56 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76CF32F0; Sun, 3 May 2015 07:33:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6521B1DCB; Sun, 3 May 2015 07:33:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t437Xuin007316; Sun, 3 May 2015 07:33:56 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t437Xtm3007310; Sun, 3 May 2015 07:33:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201505030733.t437Xtm3007310@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 3 May 2015 07:33:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385236 - in head/mail/postsrsd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 May 2015 07:33:56 -0000 Author: jbeich Date: Sun May 3 07:33:55 2015 New Revision: 385236 URL: https://svnweb.freebsd.org/changeset/ports/385236 Log: 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) Modified: head/mail/postsrsd/Makefile (contents, props changed) head/mail/postsrsd/files/postsrsd.in (contents, props changed) Modified: head/mail/postsrsd/Makefile ============================================================================== --- head/mail/postsrsd/Makefile Sun May 3 07:33:40 2015 (r385235) +++ head/mail/postsrsd/Makefile Sun May 3 07:33:55 2015 (r385236) @@ -3,6 +3,7 @@ PORTNAME= postsrsd PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= mail MAINTAINER= ports@bsdserwis.com Modified: head/mail/postsrsd/files/postsrsd.in ============================================================================== --- head/mail/postsrsd/files/postsrsd.in Sun May 3 07:33:40 2015 (r385235) +++ head/mail/postsrsd/files/postsrsd.in Sun May 3 07:33:55 2015 (r385236) @@ -67,7 +67,7 @@ if [ "x${postsrsd_idle_timeout}" != "x" 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}"