summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstevejenkins <steve@stevejenkins.com>2016-08-01 18:37:50 -0700
committerstevejenkins <steve@stevejenkins.com>2016-08-01 18:37:50 -0700
commit73aba18316830065d1da65652518beb5677dab75 (patch)
tree71f0e7d5e239c975b1cfb5c6ece7a64c79cff50d
parent53a91f10af66cc336aa2b481c9645fd6260f5403 (diff)
downloadopendkim_EL6-73aba18316830065d1da65652518beb5677dab75.tar.gz
Update to 2.10.3-7
-rw-r--r--opendkim.spec15
1 files changed, 12 insertions, 3 deletions
diff --git a/opendkim.spec b/opendkim.spec
index 4d67622..3554879 100644
--- a/opendkim.spec
+++ b/opendkim.spec
@@ -5,7 +5,7 @@
Summary: A DomainKeys Identified Mail (DKIM) milter to sign and/or verify mail
Name: opendkim
Version: 2.10.3
-Release: 6%{?dist}
+Release: 7%{?dist}
Group: System Environment/Daemons
License: BSD and Sendmail
URL: http://%{name}.org/
@@ -83,10 +83,10 @@ required for developing applications against libopendkim.
%if %systemd
# Configure with options available to systemd
-%configure --with-odbx --with-db --with-libmemcached --with-openldap
+%configure --with-odbx --with-db --with-libmemcached --with-openldap --enable-query_cache
%else
# Configure with options available to SysV
-%configure --with-odbx --with-db --with-openldap
+%configure --with-odbx --with-db --with-openldap --enable-query_cache
%endif
# Remove rpath
@@ -235,6 +235,12 @@ KeyFile %{_sysconfdir}/%{name}/keys/default.private
## because it is often the identity key used by reputation systems and thus
## somewhat security sensitive.
OversignHeaders From
+
+## Instructs the DKIM library to maintain its own local cache of keys and
+## policies retrieved from DNS, rather than relying on the nameserver for
+## caching service. Useful if the nameserver being used by the filter is
+## not local.
+# QueryCache yes
EOF
%{__cat} > %{buildroot}%{_sysconfdir}/sysconfig/%{name} << 'EOF'
@@ -522,6 +528,9 @@ rm -rf %{buildroot}
%{_libdir}/pkgconfig/*.pc
%changelog
+* Mon Aug 01 2016 Steve Jenkins <steve@stevejenkins.com> - 2.10.3-7
+- Added compile-time support for QUERY_CACHE (RH Bugzilla #1361038)
+
* Fri Jul 22 2016 Steve Jenkins <steve@stevejenkins.com> - 2.10.3-6
- Patched for From: field wrapping issue (SF Ticket #226)