From owner-svn-ports-head@freebsd.org Fri Aug 28 09:23:54 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85B249C3DF4; Fri, 28 Aug 2015 09:23:54 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C24A110; Fri, 28 Aug 2015 09:23:54 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7S9NsSR084917; Fri, 28 Aug 2015 09:23:54 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7S9NrfN084914; Fri, 28 Aug 2015 09:23:53 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201508280923.t7S9NrfN084914@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 28 Aug 2015 09:23:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395454 - in head/mail/opendkim: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Aug 2015 09:23:54 -0000 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@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