Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Aug 2018 13:26:09 +0000 (UTC)
From:      Larry Rosenman <ler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r477651 - in branches/2018Q3/mail: dovecot dovecot/files dovecot22 dovecot22/files
Message-ID:  <201808201326.w7KDQ9bB069478@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ler
Date: Mon Aug 20 13:26:09 2018
New Revision: 477651
URL: https://svnweb.freebsd.org/changeset/ports/477651

Log:
  MFH: r474275 r477601
  
  mail/dovecot: upgrade to 2.3.2.1.
  v2.3.2 still had a few unexpected bugs:
  
  - SSL/TLS servers may have crashed during client disconnection
  - lmtp: With lmtp_rcpt_check_quota=yes mail deliveries may have
     sometimes assert-crashed.
  - v2.3.2: "make check" may have crashed with 32bit systems
  
  mail/dovecot, mail/dovecot22: suppress harmless error message when the symlink in /var/run/dovecot
  to the config file doesn't exist.
  
  PR:		225078
  Reported by:	pkubaj@anongoth.pl
  Reviewed by:	adamw
  
  Approved by:	ports-secteam (miwi)

Modified:
  branches/2018Q3/mail/dovecot/Makefile
  branches/2018Q3/mail/dovecot/distinfo
  branches/2018Q3/mail/dovecot/files/dovecot.in
  branches/2018Q3/mail/dovecot22/Makefile
  branches/2018Q3/mail/dovecot22/files/dovecot.in
Directory Properties:
  branches/2018Q3/   (props changed)

Modified: branches/2018Q3/mail/dovecot/Makefile
==============================================================================
--- branches/2018Q3/mail/dovecot/Makefile	Mon Aug 20 12:48:29 2018	(r477650)
+++ branches/2018Q3/mail/dovecot/Makefile	Mon Aug 20 13:26:09 2018	(r477651)
@@ -7,7 +7,8 @@
 ######################################################################
 
 PORTNAME=	dovecot
-PORTVERSION=	2.3.2
+PORTVERSION=	2.3.2.1
+PORTREVISION=	1
 CATEGORIES=	mail ipv6
 MASTER_SITES=	https://www.dovecot.org/releases/2.3/
 

Modified: branches/2018Q3/mail/dovecot/distinfo
==============================================================================
--- branches/2018Q3/mail/dovecot/distinfo	Mon Aug 20 12:48:29 2018	(r477650)
+++ branches/2018Q3/mail/dovecot/distinfo	Mon Aug 20 13:26:09 2018	(r477651)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1530288810
-SHA256 (dovecot-2.3.2.tar.gz) = 6e48f0fa60768427f03035b0a3e93d1ae29b972bb2bd9ca998ccc6a0f6dae393
-SIZE (dovecot-2.3.2.tar.gz) = 6796744
+TIMESTAMP = 1531157067
+SHA256 (dovecot-2.3.2.1.tar.gz) = 4a65118508dc7a562e5f90dd7c3f56219fff22367c496f17d77cd0c7e2724e34
+SIZE (dovecot-2.3.2.1.tar.gz) = 6797491

Modified: branches/2018Q3/mail/dovecot/files/dovecot.in
==============================================================================
--- branches/2018Q3/mail/dovecot/files/dovecot.in	Mon Aug 20 12:48:29 2018	(r477650)
+++ branches/2018Q3/mail/dovecot/files/dovecot.in	Mon Aug 20 13:26:09 2018	(r477651)
@@ -60,7 +60,7 @@ for config in ${dovecot_config}; do
 	required_files="${config}"
 	command_args="-c ${config}"
 	if [ -s ${config} ]; then
-		base_dir=$(${command} ${command_args} -a | /usr/bin/awk -F '= ' '/^base_dir =/ { print $2 }')
+		base_dir=$(${command} ${command_args} -a 2>/dev/null | /usr/bin/awk -F '= ' '/^base_dir =/ { print $2 }')
 		pidfile="${base_dir}/master.pid"
 	else
 		echo "==Error=="

Modified: branches/2018Q3/mail/dovecot22/Makefile
==============================================================================
--- branches/2018Q3/mail/dovecot22/Makefile	Mon Aug 20 12:48:29 2018	(r477650)
+++ branches/2018Q3/mail/dovecot22/Makefile	Mon Aug 20 13:26:09 2018	(r477651)
@@ -13,7 +13,7 @@
 
 PORTNAME=	dovecot
 PORTVERSION=	2.2.36
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	mail ipv6
 MASTER_SITES=	https://www.dovecot.org/releases/2.2/
 PKGNAMESUFFIX=	22

Modified: branches/2018Q3/mail/dovecot22/files/dovecot.in
==============================================================================
--- branches/2018Q3/mail/dovecot22/files/dovecot.in	Mon Aug 20 12:48:29 2018	(r477650)
+++ branches/2018Q3/mail/dovecot22/files/dovecot.in	Mon Aug 20 13:26:09 2018	(r477651)
@@ -63,7 +63,7 @@ for config in ${dovecot_config}; do
 	required_files="${config}"
 	command_args="-c ${config}"
 	if [ -s ${config} ]; then
-		base_dir=$(${command} ${command_args} -a | /usr/bin/awk -F '= ' '/^base_dir =/ { print $2 }')
+		base_dir=$(${command} ${command_args} -a 2>/dev/null | /usr/bin/awk -F '= ' '/^base_dir =/ { print $2 }')
 		pidfile="${base_dir}/master.pid"
 	else
 		echo "==Error=="



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