Skip to content

Commit

Permalink
2.9.0 2013/12/09
Browse files Browse the repository at this point in the history
        NOTE: During the development cycle for this release, SourceForge
                changed their bug numbering system.  Bug numbers are recorded
                here as they were generated by the current system at the time
                they were filed.  The older ones (prefixed "SF") have since
                been renumbered or may no longer be in the system.
        Feature request TritonDataCenter#169: Discontinue libxml2 support in the reputation
                code.
        Feature request TritonDataCenter#174: Drop internal libstrl implementation.
        Feature request TritonDataCenter#175: Discontinue support for libdkimrep.
        Feature request TritonDataCenter#176: Update to the final REPUTE RFCs.
        Activate _FFR_REDIRECT.
        Fix bug TritonDataCenter#178: Add support for "dmarc" as an authentication method
                (though it hasn't been formally registered yet) and fix
                a minor Authentication-Results parsing problem.
        Fix bug TritonDataCenter#179: Correct handling of SignatureTTL.
        Fix bug TritonDataCenter#180: Drain results object when doing a DB walk of a postgresql
                table.
        Fix bug TritonDataCenter#182: Add an Authentication-Results header field even for
                messages with no valid From: field or a fatal structural
                violation.
        Teach dkimf_db_walk() about LDAP soft starting, and don't escape the
                forced "*" when walking.  Also handle incorrect attribute
                counts without causing an assertion failure.
        Call dkimf_config_free() on shutdown so that all DBs get properly
                closed and everything gets deallocated.
        LIBOPENDKIM: Fix bug TritonDataCenter#168: Report an unresolved CNAME for ADSP records
                as simply absent.
        LIBOPENDKIM: Add DKIM_LIBFLAGS_REQUESTREPORTS to request that an
                "r=y" tag be added to signatures, per RFC6651.
        TOOLS: Fix boundary condition in opendkim-testmsg.
        DOCS: Feature request TritonDataCenter#168: Improve documentation of signature
                verification failure debugging features.
        DOCS: Feature request TritonDataCenter#172: Describe socket selection procedure in
                detail, and mention selinux command to get set up.
  • Loading branch information
pettai committed Dec 12, 2013
1 parent 0b54a5f commit b1cb290
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 24 deletions.
4 changes: 2 additions & 2 deletions mail/opendkim/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.16 2013/09/21 22:30:43 pettai Exp $
# $NetBSD: Makefile,v 1.17 2013/12/12 14:11:32 pettai Exp $

DISTNAME= opendkim-2.8.4
DISTNAME= opendkim-2.9.0
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=opendkim/}

Expand Down
10 changes: 5 additions & 5 deletions mail/opendkim/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.12 2013/09/21 22:30:43 pettai Exp $
$NetBSD: distinfo,v 1.13 2013/12/12 14:11:32 pettai Exp $

SHA1 (opendkim-2.8.4.tar.gz) = fbe24886a7d0a332e6709709a88d21d7049bf3bb
RMD160 (opendkim-2.8.4.tar.gz) = 95407b2976e76a41c1c16c31dded090f8d8e0be4
Size (opendkim-2.8.4.tar.gz) = 1177118 bytes
SHA1 (patch-configure) = 8e635d41c213f899b31b392b1cdb96c8d5113ca4
SHA1 (opendkim-2.9.0.tar.gz) = a51603ee73a2097efa045592dbde7825a85bd9dd
RMD160 (opendkim-2.9.0.tar.gz) = c9852dc96711c107373cbc1cc14be04e44674102
Size (opendkim-2.9.0.tar.gz) = 1134646 bytes
SHA1 (patch-configure) = 3e6bc994f72ed146770190a6b8a178abf4ebe4cd
23 changes: 6 additions & 17 deletions mail/opendkim/patches/patch-configure
Original file line number Diff line number Diff line change
@@ -1,26 +1,15 @@
$NetBSD: patch-configure,v 1.1 2012/11/12 19:23:36 pettai Exp $
$NetBSD: patch-configure,v 1.2 2013/12/12 14:11:32 pettai Exp $

Portability fixes

--- configure.orig 2012-11-12 18:55:05.000000000 +0000
$NetBSD: patch-configure,v 1.2 2013/12/12 14:11:32 pettai Exp $

--- configure.orig 2013-12-12 12:59:10.000000000 +0000
+++ configure
@@ -18989,18 +18989,18 @@ then
as_fn_error $? "reputation requires libxml2 or libjansson" "$LINENO" 5
fi

-if test x"$xml2_found" == x"yes" -a x"$jansson_found" == x"yes"
+if test x"$xml2_found" = x"yes" -a x"$jansson_found" = x"yes"
then
as_fn_error $? "cannot use both libxml2 and libjansson" "$LINENO" 5
@@ -19585,7 +19585,7 @@ then
as_fn_error $? "reputation requires libjansson" "$LINENO" 5
fi

-if test x"$xml2_found" == x"yes"
+if test x"$xml2_found" = x"yes"
then

$as_echo "#define USE_XML2 1" >>confdefs.h

fi
-if test x"$jansson_found" == x"yes"
+if test x"$jansson_found" = x"yes"
then
Expand Down

0 comments on commit b1cb290

Please sign in to comment.