Thu Feb 23 17:45:32 2012 UTC ()
2.4.3
        Fix bug #SF3400670: Send ADSP failure reports when rejecting
                a message.
        Fix bug #SF3419149: Add MaximumSignedBytes to opendkim-config.h.
        Fix bug #SF3441240: Appy ReportBccAddress when generating ADSP
                reports.
        Fix bug #SF3447199: Fix logic preventing the application of the
                BodyLengthDB.
        Fix Authentication-Results generation with "AddAllSignatureResults"
                enabled.
        Fix a crash bug when trying to handle certain malformed header fields
                in verify-only mode.
        Improve error checking in the callback provided to libunbound to
                avoid crashes.
        Cope with versions of Sleepycat DB that crash when asking for a file
                descriptor for in-memory databases.
        Don't override "On-NoSignature" when "Quarantine" is set.
        Ignore header field names that contain semi-colons, as they produce
                syntactically invalid signatures.
        LIBOPENDKIM: Fix bug #SF3465400: Don't use "new" as a parameter name
                in dkim.h since that's an error for C++.
        LIBOPENDKIM: NOERROR is the same as NXDOMAIN for the purposes of
                the ADSP existence check.  Problem noted by Todd Nagengast.
        LIBOPENDKIM: Return DKIM_STAT_SYNTAX from dkim_header() if the header
                field name contained a semi-colon.
        LIBAR: After computing a timeout, if the fractional seconds portion
                adds to exactly a second, convert that amount to seconds.
                Previous versions only converted when the fractional portion
                exceeded a second.  This led to threads that spin
                indefinitely.  Problem noted by Todd Lyons and Gary Mills;
                forensic evidence revealing the problem at long last provided
                by Todd Lyons.
        STATS: Fix a crash bug in opendkim-importstats due to improper handling
                of NULL returns from SQL.

2.4.2
        Don't apply BodyLengthDB when not signing.
        LIBOPENDKIM: Update for draft-kucherawy-dkim-atps-06.
        LIBOPENDKIM: Terminate the strings returned by dkim_sig_getsubstring()
                and dkim_sig_getidentity() whenever possible.
        CONTRIB: Change "chkconfig" instruction in RHEL init script,
                and a minor tweak to the RPM spec file.

2.4.1           2011/06/28
        Fix bug #SF3312691: Add "-e" command line switch to extract a value
                from configuration.
        Fix bug #SF3324488: Accommodate postfix's job ID generation by moving
                the BodyLengthDB check down to EOH.
        Fix bug #SF3327106: Fix mode-based short-circuit logic.
        Patch #SF3321766: Remove "-d" from usage message (not implemented).
        Print database error strings instead of just return codes in
                query test mode, and clean up error strings when extracting
                them from the layers below.
        Minor fixes related to use of OpenDBX.
        LIBOPENDKIM: Fix bug #SF3328330: Correct generation of "z=" tags.
        LIBOPENDKIM: Patch #SF3313534: Improve thread-safe use of OpenSSL
                in dkim_init() and dkim_free().
        LIBOPENDKIM: Patch #SF3314269: Change all uses of off_t to ssize_t,
                as the former is reserved for use with filesystem APIs.
        LIBOPENDKIM: Make the user context pointer (void) rather than
                (const void) since the caller is allowed to change it.
        LIBOPENDKIM: Proper handling of DKIM_CBSTAT_ERROR from the prescreen
                and final callbacks.
        LIBOPENDKIM: Fix up initialization under _FFR_OVERSIGN.
        BUILD: Adjust gprof code to accomodate systems that put profiling
                output in <binary>.gmon rather than gmon.out.

2.4.0           2011/06/06
        Feature request #SF3060140: Extension of odkim.sign() to include
                maximum signed byte count.
        Feature request #SF3171865: Add _FFR_LUA_GLOBALS, enabling a
                mechanism to maintain state between Lua scripts.
        Feature request #SF3241982: Optionally add an Authentication-Results
                field for all signatures present, not just the first good one.
        Feature request #SF3256630: Add _FFR_RATE_LIMIT, enabling hooks for
                post-verification rate controls.
        Feature request #SF3290461: Add optional support for querying a
                memcache daemon via libmemcached.
        Feature request #SF3299041: Be tougher on use of the "l=" tag by
                removing "BodyLengths", renaming "BodyLengthDBFile" to
                "BodyLengthDB", and allowing pattern matches.  This
                effectively activates _FFR_BODYLENGTH_DB as well.
        Feature request #SF3303911: Add "DisableADSP" setting.
        In the stats recording code, only check for a domain match for
                signatures that don't have errors (i.e., short circuit if
                sigerror is not zero).
        LIBOPENDKIM: Feature request #SF2969516: Teach dkim_chunk() about
                DKIM_LIBFLAGS_FIXCRLF.
        LIBOPENDKIM: Feature request #SF3123731: Extend FixCRLF to cover
                header fields.
        LIBOPENDKIM: Feature request #SF3151534: Extract DKIM reputation
                support to its own library.
        LIBOPENDKIM: Feature request #SF3279589: Add _FFR_XTAGS, adding
                support for generic extension tags in signatures.
        LIBOPENDKIM: Feature request #SF3300738: Add dkim_sig_getqueries()
                and dkim_policy_getqueries() to assist API consumers that
                have their own DNS mechanisms not directly adaptable to ours.
        LIBOPENDKIM: Return an error from dkim_getsighdr() or
                dkim_getsighdr_d() if called after a key load failure.
        LIBAR: Check that the descriptor's write socket is writable before
                calling ar_sendquery() when trying to identify open requests
                that need retransmission.
        STATS: Feature request #SF3066106: Add "opendkim-anonstats" tool.
        CONTRIB: Paths in init/redhat/opendkim are now auto-generated.
        Activate _FFR_MAXVERIFY.


(pettai)
diff -r1.5 -r1.6 pkgsrc/mail/opendkim/Makefile
diff -r1.4 -r1.5 pkgsrc/mail/opendkim/PLIST
diff -r1.4 -r1.5 pkgsrc/mail/opendkim/distinfo
diff -r1.3 -r1.4 pkgsrc/mail/opendkim/PLIST.stats

cvs diff -r1.5 -r1.6 pkgsrc/mail/opendkim/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/opendkim/Makefile 2011/04/29 11:48:24 1.5
+++ pkgsrc/mail/opendkim/Makefile 2012/02/23 17:45:32 1.6
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.5 2011/04/29 11:48:24 adam Exp $ 1# $NetBSD: Makefile,v 1.6 2012/02/23 17:45:32 pettai Exp $
2 2
3DISTNAME= opendkim-2.3.2 3DISTNAME= opendkim-2.4.3
4CATEGORIES= mail 4CATEGORIES= mail
5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=opendkim/} 5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=opendkim/}
6 6
7MAINTAINER= pettai@NetBSD.org 7MAINTAINER= pettai@NetBSD.org
8HOMEPAGE= http://opendkim.org/ 8HOMEPAGE= http://opendkim.org/
9COMMENT= Open source DKIM library, MTA filter implementation and tools 9COMMENT= Open source DKIM library, MTA filter implementation and tools
10LICENSE= sendmail-open-source-license 10LICENSE= sendmail-open-source-license
11 11
12PKG_DESTDIR_SUPPORT= user-destdir 12PKG_DESTDIR_SUPPORT= user-destdir
13 13
14USE_LIBTOOL= yes 14USE_LIBTOOL= yes
15USE_TOOLS+= pkg-config 15USE_TOOLS+= pkg-config
16GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes

cvs diff -r1.4 -r1.5 pkgsrc/mail/opendkim/PLIST (expand / switch to unified diff)

--- pkgsrc/mail/opendkim/PLIST 2011/04/28 23:00:07 1.4
+++ pkgsrc/mail/opendkim/PLIST 2012/02/23 17:45:32 1.5
@@ -1,43 +1,48 @@ @@ -1,43 +1,48 @@
1@comment $NetBSD: PLIST,v 1.4 2011/04/28 23:00:07 pettai Exp $ 1@comment $NetBSD: PLIST,v 1.5 2012/02/23 17:45:32 pettai Exp $
2bin/opendkim-genkey 2bin/opendkim-genkey
3bin/opendkim-genzone 3bin/opendkim-genzone
4bin/opendkim-testadsp 4bin/opendkim-testadsp
5bin/opendkim-testkey 5bin/opendkim-testkey
6include/opendkim/dkim.h 6include/opendkim/dkim.h
7lib/libopendkim.la 7lib/libopendkim.la
8lib/pkgconfig/opendkim.pc 8lib/pkgconfig/opendkim.pc
9man/man8/opendkim-genkey.8 9man/man8/opendkim-genkey.8
10man/man8/opendkim-genzone.8 10man/man8/opendkim-genzone.8
11man/man8/opendkim-testadsp.8 11man/man8/opendkim-testadsp.8
12man/man8/opendkim-testkey.8 12man/man8/opendkim-testkey.8
13share/doc/opendkim/FEATURES 13share/doc/opendkim/FEATURES
14share/doc/opendkim/KNOWNBUGS 14share/doc/opendkim/KNOWNBUGS
15share/doc/opendkim/LICENSE 15share/doc/opendkim/LICENSE
16share/doc/opendkim/LICENSE.Sendmail 16share/doc/opendkim/LICENSE.Sendmail
17share/doc/opendkim/README 17share/doc/opendkim/README
18share/doc/opendkim/README.SQL 18share/doc/opendkim/README.SQL
19share/doc/opendkim/README.opendkim-reportstats 19share/doc/opendkim/README.opendkim-reportstats
20share/doc/opendkim/RELEASE_NOTES.Sendmail 20share/doc/opendkim/RELEASE_NOTES.Sendmail
21share/doc/opendkim/authheaders-check-setup-hook.lua 21share/doc/opendkim/authheaders-check-setup-hook.lua
22share/doc/opendkim/convert_keylist.sh 22share/doc/opendkim/convert_keylist.sh
23share/doc/opendkim/dkim.html 23share/doc/opendkim/dkim.html
 24share/doc/opendkim/dkim_add_xtag.html
24share/doc/opendkim/dkim_alg_t.html 25share/doc/opendkim/dkim_alg_t.html
25share/doc/opendkim/dkim_body.html 26share/doc/opendkim/dkim_body.html
26share/doc/opendkim/dkim_canon_t.html 27share/doc/opendkim/dkim_canon_t.html
27share/doc/opendkim/dkim_cbstat.html 28share/doc/opendkim/dkim_cbstat.html
28share/doc/opendkim/dkim_chunk.html 29share/doc/opendkim/dkim_chunk.html
29share/doc/opendkim/dkim_close.html 30share/doc/opendkim/dkim_close.html
30share/doc/opendkim/dkim_diffheaders.html 31share/doc/opendkim/dkim_diffheaders.html
 32share/doc/opendkim/dkim_dns_set_query_cancel.html
 33share/doc/opendkim/dkim_dns_set_query_service.html
 34share/doc/opendkim/dkim_dns_set_query_start.html
 35share/doc/opendkim/dkim_dns_set_query_waitreply.html
31share/doc/opendkim/dkim_dnssec.html 36share/doc/opendkim/dkim_dnssec.html
32share/doc/opendkim/dkim_eoh.html 37share/doc/opendkim/dkim_eoh.html
33share/doc/opendkim/dkim_eom.html 38share/doc/opendkim/dkim_eom.html
34share/doc/opendkim/dkim_flush_cache.html 39share/doc/opendkim/dkim_flush_cache.html
35share/doc/opendkim/dkim_free.html 40share/doc/opendkim/dkim_free.html
36share/doc/opendkim/dkim_get_msgdate.html 41share/doc/opendkim/dkim_get_msgdate.html
37share/doc/opendkim/dkim_get_reputation.html 42share/doc/opendkim/dkim_get_reputation.html
38share/doc/opendkim/dkim_get_signer.html 43share/doc/opendkim/dkim_get_signer.html
39share/doc/opendkim/dkim_get_sigsubstring.html 44share/doc/opendkim/dkim_get_sigsubstring.html
40share/doc/opendkim/dkim_get_user_context.html 45share/doc/opendkim/dkim_get_user_context.html
41share/doc/opendkim/dkim_getcachestats.html 46share/doc/opendkim/dkim_getcachestats.html
42share/doc/opendkim/dkim_getdomain.html 47share/doc/opendkim/dkim_getdomain.html
43share/doc/opendkim/dkim_geterror.html 48share/doc/opendkim/dkim_geterror.html
@@ -56,91 +61,98 @@ share/doc/opendkim/dkim_getuser.html @@ -56,91 +61,98 @@ share/doc/opendkim/dkim_getuser.html
56share/doc/opendkim/dkim_header.html 61share/doc/opendkim/dkim_header.html
57share/doc/opendkim/dkim_init.html 62share/doc/opendkim/dkim_init.html
58share/doc/opendkim/dkim_key_syntax.html 63share/doc/opendkim/dkim_key_syntax.html
59share/doc/opendkim/dkim_lib.html 64share/doc/opendkim/dkim_lib.html
60share/doc/opendkim/dkim_libfeature.html 65share/doc/opendkim/dkim_libfeature.html
61share/doc/opendkim/dkim_libversion.html 66share/doc/opendkim/dkim_libversion.html
62share/doc/opendkim/dkim_mail_parse.html 67share/doc/opendkim/dkim_mail_parse.html
63share/doc/opendkim/dkim_minbody.html 68share/doc/opendkim/dkim_minbody.html
64share/doc/opendkim/dkim_ohdrs.html 69share/doc/opendkim/dkim_ohdrs.html
65share/doc/opendkim/dkim_options.html 70share/doc/opendkim/dkim_options.html
66share/doc/opendkim/dkim_param_t.html 71share/doc/opendkim/dkim_param_t.html
67share/doc/opendkim/dkim_policy.html 72share/doc/opendkim/dkim_policy.html
68share/doc/opendkim/dkim_policy_getdnssec.html 73share/doc/opendkim/dkim_policy_getdnssec.html
 74share/doc/opendkim/dkim_policy_getqueries.html
69share/doc/opendkim/dkim_policy_getreportinfo.html 75share/doc/opendkim/dkim_policy_getreportinfo.html
70share/doc/opendkim/dkim_policy_state_free.html 76share/doc/opendkim/dkim_policy_state_free.html
71share/doc/opendkim/dkim_policy_state_new.html 77share/doc/opendkim/dkim_policy_state_new.html
72share/doc/opendkim/dkim_policy_syntax.html 78share/doc/opendkim/dkim_policy_syntax.html
73share/doc/opendkim/dkim_policy_t.html 79share/doc/opendkim/dkim_policy_t.html
74share/doc/opendkim/dkim_presult.html 80share/doc/opendkim/dkim_presult.html
75share/doc/opendkim/dkim_pstate.html 81share/doc/opendkim/dkim_pstate.html
 82share/doc/opendkim/dkim_qi_getname.html
 83share/doc/opendkim/dkim_qi_gettype.html
76share/doc/opendkim/dkim_query_t.html 84share/doc/opendkim/dkim_query_t.html
 85share/doc/opendkim/dkim_queryinfo.html
77share/doc/opendkim/dkim_resign.html 86share/doc/opendkim/dkim_resign.html
78share/doc/opendkim/dkim_set_dns_callback.html 87share/doc/opendkim/dkim_set_dns_callback.html
79share/doc/opendkim/dkim_set_final.html 88share/doc/opendkim/dkim_set_final.html
80share/doc/opendkim/dkim_set_key_lookup.html 89share/doc/opendkim/dkim_set_key_lookup.html
81share/doc/opendkim/dkim_set_margin.html 90share/doc/opendkim/dkim_set_margin.html
82share/doc/opendkim/dkim_set_policy_lookup.html 91share/doc/opendkim/dkim_set_policy_lookup.html
83share/doc/opendkim/dkim_set_prescreen.html 92share/doc/opendkim/dkim_set_prescreen.html
84share/doc/opendkim/dkim_set_signature_handle.html 93share/doc/opendkim/dkim_set_signature_handle.html
85share/doc/opendkim/dkim_set_signature_handle_free.html 94share/doc/opendkim/dkim_set_signature_handle_free.html
86share/doc/opendkim/dkim_set_signature_tagvalues.html 95share/doc/opendkim/dkim_set_signature_tagvalues.html
87share/doc/opendkim/dkim_set_signer.html 96share/doc/opendkim/dkim_set_signer.html
88share/doc/opendkim/dkim_set_user_context.html 97share/doc/opendkim/dkim_set_user_context.html
89share/doc/opendkim/dkim_setpartial.html 98share/doc/opendkim/dkim_setpartial.html
90share/doc/opendkim/dkim_sig_getbh.html 99share/doc/opendkim/dkim_sig_getbh.html
91share/doc/opendkim/dkim_sig_getcanonlen.html 100share/doc/opendkim/dkim_sig_getcanonlen.html
92share/doc/opendkim/dkim_sig_getcanons.html 101share/doc/opendkim/dkim_sig_getcanons.html
93share/doc/opendkim/dkim_sig_getcontext.html 102share/doc/opendkim/dkim_sig_getcontext.html
94share/doc/opendkim/dkim_sig_getdnssec.html 103share/doc/opendkim/dkim_sig_getdnssec.html
95share/doc/opendkim/dkim_sig_getdomain.html 104share/doc/opendkim/dkim_sig_getdomain.html
96share/doc/opendkim/dkim_sig_geterror.html 105share/doc/opendkim/dkim_sig_geterror.html
97share/doc/opendkim/dkim_sig_geterrorstr.html 106share/doc/opendkim/dkim_sig_geterrorstr.html
98share/doc/opendkim/dkim_sig_getflags.html 107share/doc/opendkim/dkim_sig_getflags.html
99share/doc/opendkim/dkim_sig_getidentity.html 108share/doc/opendkim/dkim_sig_getidentity.html
100share/doc/opendkim/dkim_sig_getkeysize.html 109share/doc/opendkim/dkim_sig_getkeysize.html
 110share/doc/opendkim/dkim_sig_getqueries.html
101share/doc/opendkim/dkim_sig_getreportinfo.html 111share/doc/opendkim/dkim_sig_getreportinfo.html
102share/doc/opendkim/dkim_sig_getselector.html 112share/doc/opendkim/dkim_sig_getselector.html
103share/doc/opendkim/dkim_sig_getsignalg.html 113share/doc/opendkim/dkim_sig_getsignalg.html
104share/doc/opendkim/dkim_sig_getsignedhdrs.html 114share/doc/opendkim/dkim_sig_getsignedhdrs.html
105share/doc/opendkim/dkim_sig_getsigntime.html 115share/doc/opendkim/dkim_sig_getsigntime.html
106share/doc/opendkim/dkim_sig_gettagvalue.html 116share/doc/opendkim/dkim_sig_gettagvalue.html
107share/doc/opendkim/dkim_sig_hdrsigned.html 117share/doc/opendkim/dkim_sig_hdrsigned.html
108share/doc/opendkim/dkim_sig_ignore.html 118share/doc/opendkim/dkim_sig_ignore.html
109share/doc/opendkim/dkim_sig_process.html 119share/doc/opendkim/dkim_sig_process.html
110share/doc/opendkim/dkim_sig_syntax.html 120share/doc/opendkim/dkim_sig_syntax.html
111share/doc/opendkim/dkim_sigerror.html 121share/doc/opendkim/dkim_sigerror.html
112share/doc/opendkim/dkim_siginfo.html 122share/doc/opendkim/dkim_siginfo.html
113share/doc/opendkim/dkim_sigkey_t.html 123share/doc/opendkim/dkim_sigkey_t.html
114share/doc/opendkim/dkim_sign.html 124share/doc/opendkim/dkim_sign.html
115share/doc/opendkim/dkim_ssl_version.html 125share/doc/opendkim/dkim_ssl_version.html
116share/doc/opendkim/dkim_stat.html 126share/doc/opendkim/dkim_stat.html
117share/doc/opendkim/dkim_verify.html 127share/doc/opendkim/dkim_verify.html
118share/doc/opendkim/dns.html 128share/doc/opendkim/dns.html
119share/doc/opendkim/draft-ietf-dkim-implementation-report-06.txt 129share/doc/opendkim/draft-ietf-dkim-implementation-report-06.txt
120share/doc/opendkim/draft-ietf-dkim-mailinglists-06.txt 130share/doc/opendkim/draft-ietf-dkim-mailinglists-12.txt
121share/doc/opendkim/draft-ietf-marf-dkim-reporting-01.txt 131share/doc/opendkim/draft-ietf-dkim-rfc4871bis-15.txt
122share/doc/opendkim/draft-kucherawy-authres-vbr-04.txt 132share/doc/opendkim/draft-ietf-marf-dkim-reporting-02.txt
 133share/doc/opendkim/draft-kucherawy-dkim-atps-06.txt
123share/doc/opendkim/index.html 134share/doc/opendkim/index.html
124share/doc/opendkim/opendkim 135share/doc/opendkim/opendkim
 136share/doc/opendkim/opendkim-fixipaddrs.pl
125share/doc/opendkim/opendkim-reportstats 137share/doc/opendkim/opendkim-reportstats
126share/doc/opendkim/opendkim.conf.sample 138share/doc/opendkim/opendkim.conf.sample
127share/doc/opendkim/opendkim.conf.simple 139share/doc/opendkim/opendkim.conf.simple
128share/doc/opendkim/opendkim.conf.simple-verify 140share/doc/opendkim/opendkim.conf.simple-verify
129share/doc/opendkim/opendkim.spec.in 141share/doc/opendkim/opendkim.spec.in
130share/doc/opendkim/opendkim.xml 142share/doc/opendkim/opendkim.xml
131share/doc/opendkim/overview.html 143share/doc/opendkim/overview.html
132share/doc/opendkim/rfc3447.txt 144share/doc/opendkim/rfc3447.txt
133share/doc/opendkim/rfc4686.txt 145share/doc/opendkim/rfc4686.txt
134share/doc/opendkim/rfc4871.txt 146share/doc/opendkim/rfc4871.txt
135share/doc/opendkim/rfc5016.txt 147share/doc/opendkim/rfc5016.txt
136share/doc/opendkim/rfc5322.txt 148share/doc/opendkim/rfc5322.txt
137share/doc/opendkim/rfc5451.txt 149share/doc/opendkim/rfc5451.txt
138share/doc/opendkim/rfc5518.txt 150share/doc/opendkim/rfc5518.txt
139share/doc/opendkim/rfc5585.txt 151share/doc/opendkim/rfc5585.txt
140share/doc/opendkim/rfc5617.txt 152share/doc/opendkim/rfc5617.txt
141share/doc/opendkim/rfc5672.txt 153share/doc/opendkim/rfc5672.txt
142share/doc/opendkim/rfc5863.txt 154share/doc/opendkim/rfc5863.txt
143share/doc/opendkim/rfc5965.txt 155share/doc/opendkim/rfc5965.txt
144share/doc/opendkim/rfc6008.txt 156share/doc/opendkim/rfc6008.txt
145share/doc/opendkim/rfc6212.txt 157share/doc/opendkim/rfc6212.txt
146share/examples/rc.d/opendkim 158share/doc/opendkim/stats.lua

cvs diff -r1.4 -r1.5 pkgsrc/mail/opendkim/distinfo (expand / switch to unified diff)

--- pkgsrc/mail/opendkim/distinfo 2011/04/28 23:00:07 1.4
+++ pkgsrc/mail/opendkim/distinfo 2012/02/23 17:45:32 1.5
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.4 2011/04/28 23:00:07 pettai Exp $ 1$NetBSD: distinfo,v 1.5 2012/02/23 17:45:32 pettai Exp $
2 2
3SHA1 (opendkim-2.3.2.tar.gz) = 4dbf97957b451eeb7c5183df09f235f08e160355 3SHA1 (opendkim-2.4.3.tar.gz) = cde87adf1236c9a9f25277935c26020fb13b1153
4RMD160 (opendkim-2.3.2.tar.gz) = 075c6b3f8399c71c19cd3789f9d599ddbaf1c00d 4RMD160 (opendkim-2.4.3.tar.gz) = 73908fb7cf8f7c99b1d98499249d0283d0d59542
5Size (opendkim-2.3.2.tar.gz) = 1281269 bytes 5Size (opendkim-2.4.3.tar.gz) = 1381956 bytes

cvs diff -r1.3 -r1.4 pkgsrc/mail/opendkim/PLIST.stats (expand / switch to unified diff)

--- pkgsrc/mail/opendkim/PLIST.stats 2011/04/29 11:48:24 1.3
+++ pkgsrc/mail/opendkim/PLIST.stats 2012/02/23 17:45:32 1.4
@@ -1,3 +1,4 @@ @@ -1,3 +1,4 @@
1@comment $NetBSD: PLIST.stats,v 1.3 2011/04/29 11:48:24 adam Exp $ 1@comment $NetBSD: PLIST.stats,v 1.4 2012/02/23 17:45:32 pettai Exp $
2bin/opendkim-stats 2bin/opendkim-stats
 3man/man1/opendkim-spam.1
3man/man8/opendkim-stats.8 4man/man8/opendkim-stats.8