svn commit: r489515 - in head/mail/dovecot: . files

Larry Rosenman ler at FreeBSD.org
Sun Jan 6 17:46:55 UTC 2019


Author: ler
Date: Sun Jan  6 17:46:53 2019
New Revision: 489515
URL: https://svnweb.freebsd.org/changeset/ports/489515

Log:
  mail/dovecot: Pick up mailing list patch for imap-preauth vs. stats-writer.
  
  see the dovecot mailing list thread on imap-preauth and stats-writer between
  Stephan Bosch and a FreeBSD user
  
  Obtained from:	upstream mailing list.

Added:
  head/mail/dovecot/files/patch-src_lib-master_master-service.c   (contents, props changed)
Modified:
  head/mail/dovecot/Makefile

Modified: head/mail/dovecot/Makefile
==============================================================================
--- head/mail/dovecot/Makefile	Sun Jan  6 17:29:59 2019	(r489514)
+++ head/mail/dovecot/Makefile	Sun Jan  6 17:46:53 2019	(r489515)
@@ -8,7 +8,7 @@
 
 PORTNAME=	dovecot
 PORTVERSION=	2.3.4
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	mail ipv6
 MASTER_SITES=	https://www.dovecot.org/releases/2.3/
 

Added: head/mail/dovecot/files/patch-src_lib-master_master-service.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/dovecot/files/patch-src_lib-master_master-service.c	Sun Jan  6 17:46:53 2019	(r489515)
@@ -0,0 +1,11 @@
+--- src/lib-master/master-service.c.orig	2019-01-06 17:42:52 UTC
++++ src/lib-master/master-service.c
+@@ -341,7 +341,7 @@ master_service_init(const char *name, enum master_serv
+ 	if ((flags & MASTER_SERVICE_FLAG_DONT_SEND_STATS) == 0) {
+ 		/* Initialize stats-client early so it can see all events. */
+ 		value = getenv(DOVECOT_STATS_WRITER_SOCKET_PATH);
+-		if (value != NULL)
++		if (value != NULL && *value = '\0')
+ 			service->stats_client = stats_client_init(value, FALSE);
+ 	}
+ 


More information about the svn-ports-head mailing list