OpenDKIM
OpenDKIM copied to clipboard
This pull request addresses issue #131. It adds statements in the manual entry that the OmitHeaders, OversignHeaders, SenderHeaders, SignHeaders parameters are comma-separated. This was not explicitly stated before. It adds...
There are some tests in configure.ac that contain, int main() { ... } That's not the correct signature for main() according to the C standard, and newer compilers are going...
This fixes a build failure on musl, reported at https://bugs.gentoo.org/896048
The `--with-ldns` flag is supposedly for use with `--with-unbound`, but Unbound itself hasn't used ldns in a decade. It looks like the flag was only originally needed to fix libunbound...
I tried to setup OpenDKIM to use ldapi URIs in KeyTable and Signingtable. This does not work here. what's working in `opendkim.conf`: ``` KeyTable ldap://ldapserver.example/dc=example?DKIMDomain,DKIMSelector,DKIMKey,?sub?(DKIMSelector=$d) SigningTable ldap://ldapserver.example/dc=example?DKIMSelector?sub?(DKIMIdentity=$d) ``` but If...
Hi all... Not sure if this is a bug, but I'm stumped. I'm trying to connect opendkim with memcached, but I'm getting the following error: ``` root@ad66fb76c1d5:~# /usr/sbin/opendkim -x /etc/opendkim.conf...
This saves incorrect usage of DKIMF_DB_MEMCACHE from assertion failure addressing to unknown DB type error, although it still need that caller should handle the error properly. (see issue #218)
`opendkim` errors when `DKIM-Signature:` headers contain UTF-encoded strings: ``` May 27 20:40:08 marc1 opendkim[13384]: E5ED79C600B0: syntax error: syntax error in \ signature data (ASCII 0x3d at offset 1) May 27...
OpenDKIM 2.11.0~beta2-8 Debian package has these compile options: ``` override_dh_auto_configure: CONFIG_SHELL=/bin/sh dh_auto_configure -- \ CFLAGS="$(CFLAGS) $(CPPFLAGS)" \ LDFLAGS="$(LDFLAGS) -Wl,-z,defs -L/usr/lib/libmilter" \ --disable-live-testing \ --enable-vbr \ --enable-rbl \ --enable-atps \ --enable-stats...
I have this pair of lines in an email that fails DKIM signature verification: `List-Unsubscribe: , ` If I merge them and remove the whitespace, the dkim signature verification succeeds...