Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Apr 2018 04:40:07 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r467559 - in head/mail/postgrey: . files
Message-ID:  <201804170440.w3H4e7E9073629@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Tue Apr 17 04:40:06 2018
New Revision: 467559
URL: https://svnweb.freebsd.org/changeset/ports/467559

Log:
  mail/postgrey: fix files/postgrey.in for PG_* -> POSTGREY_* variables
  
  PR:		227261
  Submitted by:	Melissa Pilgrim <ports.maintainer@evilphi.com> (maintainer)
  Reported by:	Pierre Guinoiseau <pierre@guinoiseau.eu>, Paul Blazejowski <paulb@blazebox.homeip.net>

Modified:
  head/mail/postgrey/Makefile
  head/mail/postgrey/files/postgrey.in

Modified: head/mail/postgrey/Makefile
==============================================================================
--- head/mail/postgrey/Makefile	Tue Apr 17 04:17:13 2018	(r467558)
+++ head/mail/postgrey/Makefile	Tue Apr 17 04:40:06 2018	(r467559)
@@ -3,7 +3,7 @@
 
 PORTNAME=	postgrey
 PORTVERSION=	1.37
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	mail
 MASTER_SITES=	http://postgrey.schweikert.ch/pub/ \
 		http://postgrey.schweikert.ch/pub/old/

Modified: head/mail/postgrey/files/postgrey.in
==============================================================================
--- head/mail/postgrey/files/postgrey.in	Tue Apr 17 04:17:13 2018	(r467558)
+++ head/mail/postgrey/files/postgrey.in	Tue Apr 17 04:40:06 2018	(r467559)
@@ -12,7 +12,7 @@
 # postgrey_enable (bool)        Set to 'YES' to enable
 #                               Default: NO
 # postgrey_dbdir (path)         Location of postgrey database files.
-#                               Default: %%PG_DBDIR%%
+#                               Default: %%POSTGREY_DBDIR%%
 # postgrey_flags (extra args)   Additional command-line parameters.
 #                               Default: --inet=10023
 #
@@ -30,13 +30,13 @@ rcvar=postgrey_enable
 load_rc_config $name
 
 : ${postgrey_enable:=NO}
-: ${postgrey_dbdir:=%%PG_DBDIR%%}
+: ${postgrey_dbdir:=%%POSTGREY_DBDIR%%}
 : ${postgrey_flags:=--inet=10023}
 
 command=%%PREFIX%%/sbin/postgrey
 extra_commands=reload
-pidfile=%%PG_RUNDIR%%/postgrey.pid
-required_dirs="${postgrey_dbdir} %%PG_RUNDIR%%"
+pidfile=%%POSTGREY_RUNDIR%%/postgrey.pid
+required_dirs="${postgrey_dbdir} %%POSTGREY_RUNDIR%%"
 
 command_args="-d --pidfile=${pidfile} --dbdir=${postgrey_dbdir}"
 



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