svn commit: r395454 - in head/mail/opendkim: . files

Matthew Seaman matthew at FreeBSD.org
Fri Aug 28 09:23:54 UTC 2015


Author: matthew
Date: Fri Aug 28 09:23:53 2015
New Revision: 395454
URL: https://svnweb.freebsd.org/changeset/ports/395454

Log:
  * Add a fix for where libopendkim fails to cope with a header line
    which is wrapped immediately after the header name.  This has been
    reported upstream:
  
  http://sourceforge.net/p/opendkim/bugs/230/
  
  * Update pkg-descr -- all of the ADSP stuff has gone from opendkim
    now.
  
  PR:		202668
  Approved by:	freebsd-ports at dan.me.uk (maintainer)

Added:
  head/mail/opendkim/files/patch-libopendkim_dkim-canon.c   (contents, props changed)
Modified:
  head/mail/opendkim/Makefile
  head/mail/opendkim/pkg-descr

Modified: head/mail/opendkim/Makefile
==============================================================================
--- head/mail/opendkim/Makefile	Fri Aug 28 09:23:13 2015	(r395453)
+++ head/mail/opendkim/Makefile	Fri Aug 28 09:23:53 2015	(r395454)
@@ -3,6 +3,7 @@
 
 PORTNAME=		opendkim
 PORTVERSION=		2.10.3
+PORTREVISION=		1
 CATEGORIES=		mail security
 MASTER_SITES=		SF/${PORTNAME} \
 			SF/${PORTNAME}/Previous%20Releases \

Added: head/mail/opendkim/files/patch-libopendkim_dkim-canon.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/opendkim/files/patch-libopendkim_dkim-canon.c	Fri Aug 28 09:23:53 2015	(r395454)
@@ -0,0 +1,11 @@
+--- libopendkim/dkim-canon.c.orig	2015-08-26 08:37:01 UTC
++++ libopendkim/dkim-canon.c
+@@ -388,7 +388,7 @@ dkim_canon_header_string(struct dkim_dst
+ 		}
+ 
+ 		/* skip all spaces before first word */
+-		while (*p != '\0' && DKIM_ISWSP(*p))
++		while (*p != '\0' && DKIM_ISLWSP(*p))
+ 			p++;
+ 
+ 		space = FALSE;				/* just saw a space */

Modified: head/mail/opendkim/pkg-descr
==============================================================================
--- head/mail/opendkim/pkg-descr	Fri Aug 28 09:23:13 2015	(r395453)
+++ head/mail/opendkim/pkg-descr	Fri Aug 28 09:23:53 2015	(r395454)
@@ -1,8 +1,7 @@
 OpenDKIM is an open source implementation of the DKIM (Domain Keys Identified
 Mail) sender authentication system proposed by the E-mail Signing Technology
 Group (ESTG), now standardized by the IETF (RFC4871). It also includes
-implementations of the Author Domain Signing Practises (ADSP, RFC5617) and
-Vouch By Reference (VBR, RFC5518) proposed standards.
+an implementations of the Vouch By Reference (VBR, RFC5518) proposed standard.
 
 The OpenDKIM package consists of a library that implements the DKIM service
 and a milter-based filter application that can plug in to any milter-aware


More information about the svn-ports-all mailing list