From owner-svn-ports-all@freebsd.org Wed Sep 13 14:45:31 2017 Return-Path: Delivered-To: svn-ports-all@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 32191E247A2; Wed, 13 Sep 2017 14:45:31 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 0B418679FF; Wed, 13 Sep 2017 14:45:30 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8DEjUlO065063; Wed, 13 Sep 2017 14:45:30 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8DEjU49065060; Wed, 13 Sep 2017 14:45:30 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201709131445.v8DEjU49065060@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 13 Sep 2017 14:45:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449797 - head/mail/opendmarc X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/mail/opendmarc X-SVN-Commit-Revision: 449797 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Sep 2017 14:45:31 -0000 Author: pi Date: Wed Sep 13 14:45:29 2017 New Revision: 449797 URL: https://svnweb.freebsd.org/changeset/ports/449797 Log: mail/opendmarc: update 1.3.1 -> 1.3.2 Feature request #86: Change meaning of "RequiredHeaders" such that header validity is always checked, but messages are only rejected on that basis when the flag is set. Based on a patch from Andreas Schulze. Feature request #127: Log SPF results when rejecting. Requested by Patrick Wagner; patch from Andreas Schulze, follow-up patch from Juri Haberland. Feature request #138: Inculde policy and disposition information in an Authentication-Results comment. Based on a patch from Juri Haberland. Feature request #139: Include the client host name if known in failure reports. Suggested by Roland Turner; patch by Andreas Schulze. Fix bug #95: Assume IPv6 for SPF operations. Patch from Juri Haberland. Fix bug #120: Fix control logic around the SPF result. Reported by Christophe Wolfhugel; patch from Andreas Schulze. Fix bug #122: Don't skip the HELO milter phase when SPF is enabled. Reported by Christophe Wolfhugel. Fix bug #157: Fix logging of implicit authserv-ids. Reported by Andreas Schulze; patch from Juri Haberland. Fix bug #158: Log ignored connections. Patch from Andreas Schulze. Fix bug #160: Fix "SyslogFacility" handling. Patch from Juri Haberland. Fix bug #163: Use a larger buffer for the raw MAIL FROM value. Based on a patch from Andreas Schulze. Fix bug #174: Trim "!" suffixes from reporting addresses. Problem noted by Juri Haberland. Fix bug #186: When reloading the configuration file, the public suffix list was read in with the wrong comment indicator. Patch from Federico Omoto. LIBOPENDMARC: Fix bug #115: Fix type mismatch. Patch from Sebastian A. Siewior via Scott Kitterman. LIBOPENDMARC: Fix bug #121: Fix IPv6 CIDR matching in SPF code. Patch from Christophe Wolfhugel. LIBOPENDMARC: Fix bug #125: Compile time IPv6 fix. Reported by Christophe Wolfhugel. LIBOPENDMARC: Fix bug #131: Fix alignment bug. Patch from Andreas Schulze. LIBOPENDMARC: Fix bug #147: Fix stripping of whitespace from DMARC DNS records. Based on a patch from Job Noorman. LIBOPENDMARC: Fix bug #149: Apply "sp" setting, if present and applicable. Patch from Petr Novak. LIBOPENDMARC: Fix bug #154: Fix "rf" and "fo" processing logic. LIBOPENDMARC: Fix bug #156: Fix variable name. Patch by Andreas Schulze. LIBOPENDMARC: Fix bug #165: Fix logic in checking which SPF identifier was used. Patches from Marco Favero and Juri Haberland. LIBOPENDMARC: Fix bug #167: Don't return "fail" when we should return "none". Patch from Marco Favero. REPORTS: Fix bug #134: Handle SMTP errors correctly. Patch from Andreas Schulze. REPORTS: Fix bug #141: Set the HELO parameter correctly. Reported by Alan Smith; patch from Andreas Schulze. REPORTS: Fix bug #143: Fix logic in table truncation. Reported by Wayne Andersen; patch from Juri Haberland. REPORTS: Fix bug #162: Always report "sp" in aggregate reports. Patch from Juri Haberland. REPORTS: Fix bug #166: Fix report start/end time logic. Patch from Juri Haberland. REPORTS: Fix bug #188: Don't delete inputs too early in opendmarc-reports. Patch from Juri Haberland. TOOLS: Fix bug #161: "Forensic" reports were renamed "Failure" reports. Patch from Andreas Schulze. TOOLS: Fix bug #164: Handle IPv6 test addresses. Reported by Andreas Schulze; patch from Juri Haberland. DOCS: Patch #189: Replace the DMARC RFC with an HTML page referencing the relevant specs, since Debian doesn't consider RFCs to be "free". Patch from Scott Kitterman via Juri Haberland. PR: 220902 Submitted by: Dan Mahoney (maintainer), Lukasz Wasikowski Modified: head/mail/opendmarc/Makefile head/mail/opendmarc/distinfo head/mail/opendmarc/pkg-plist Modified: head/mail/opendmarc/Makefile ============================================================================== --- head/mail/opendmarc/Makefile Wed Sep 13 14:41:32 2017 (r449796) +++ head/mail/opendmarc/Makefile Wed Sep 13 14:45:29 2017 (r449797) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= opendmarc -PORTVERSION= 1.3.1 -PORTREVISION= 4 +PORTVERSION= 1.3.2 CATEGORIES= mail security MASTER_SITES= SF/${PORTNAME} \ SF/${PORTNAME}/Previous%20Releases Modified: head/mail/opendmarc/distinfo ============================================================================== --- head/mail/opendmarc/distinfo Wed Sep 13 14:41:32 2017 (r449796) +++ head/mail/opendmarc/distinfo Wed Sep 13 14:45:29 2017 (r449797) @@ -1,2 +1,3 @@ -SHA256 (opendmarc-1.3.1.tar.gz) = a0c0cf74de68454cbdce16a3095b96e70fc16614325052ea230878d1ca64da6b -SIZE (opendmarc-1.3.1.tar.gz) = 640151 +TIMESTAMP = 1500636334 +SHA256 (opendmarc-1.3.2.tar.gz) = 213c4b01a9ff5dcdf331f7bd1dd6a382077abbf8ee9111852f2101ec917c2ffb +SIZE (opendmarc-1.3.2.tar.gz) = 593448 Modified: head/mail/opendmarc/pkg-plist ============================================================================== --- head/mail/opendmarc/pkg-plist Wed Sep 13 14:41:32 2017 (r449796) +++ head/mail/opendmarc/pkg-plist Wed Sep 13 14:45:29 2017 (r449797) @@ -3,7 +3,7 @@ include/opendmarc/dmarc.h lib/libopendmarc.a lib/libopendmarc.so lib/libopendmarc.so.2 -lib/libopendmarc.so.2.0.1 +lib/libopendmarc.so.2.0.2 man/man5/opendmarc.conf.5.gz man/man8/opendmarc-check.8.gz man/man8/opendmarc-expire.8.gz