Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Mar 2019 16:26:24 +0000 (UTC)
From:      Larry Rosenman <ler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r495360 - in head/mail/exim: . files
Message-ID:  <201903111626.x2BGQOvl067081@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ler
Date: Mon Mar 11 16:26:23 2019
New Revision: 495360
URL: https://svnweb.freebsd.org/changeset/ports/495360

Log:
  mail/exim: add missing colon on I=
  
  Reported by:	ler (self)
  Approved by:	vsevolod (maintainer, private mail)

Added:
  head/mail/exim/files/patch-src_deliver.c   (contents, props changed)
Modified:
  head/mail/exim/Makefile

Modified: head/mail/exim/Makefile
==============================================================================
--- head/mail/exim/Makefile	Mon Mar 11 16:20:38 2019	(r495359)
+++ head/mail/exim/Makefile	Mon Mar 11 16:26:23 2019	(r495360)
@@ -3,7 +3,7 @@
 
 PORTNAME=	exim
 PORTVERSION?=	${EXIM_VERSION}
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	mail ipv6
 MASTER_SITES=	EXIM:exim
 MASTER_SITE_SUBDIR=	/exim4/:exim \

Added: head/mail/exim/files/patch-src_deliver.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/exim/files/patch-src_deliver.c	Mon Mar 11 16:26:23 2019	(r495360)
@@ -0,0 +1,11 @@
+--- src/deliver.c.orig	2019-03-11 16:20:17 UTC
++++ src/deliver.c
+@@ -763,7 +763,7 @@ if (LOGGING(incoming_interface) && LOGGING(outgoing_in
+   {
+   g = string_fmt_append(g, " I=[%s]", sending_ip_address);
+   if (LOGGING(outgoing_port))
+-    g = string_fmt_append(g, "%d", sending_port);
++    g = string_fmt_append(g, ":%d", sending_port);
+   }
+ return g;
+ }



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