Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 May 2015 07:33:55 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r385236 - in head/mail/postsrsd: . files
Message-ID:  <201505030733.t437Xtm3007310@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505030733.t437Xtm3007310>