You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Appears this used to be set as part of the dist-hookMakefile target, but that's not getting triggered via the GitHub release process, and winds up remaining the default 0. I don't see it set in any of the 1.4 release packages on here.
This used to contain version information:
$ grep OPENDMARC_LIB_VERSION /usr/include/opendmarc/dmarc.h
#define OPENDMARC_LIB_VERSION 0x01030200
Now it contains 0x00000000. Can you check to see if perhaps a version number generator is not working?
I am currently using the following logic and hope version numbers are supported again in the future:
#if (OPENDMARC_LIB_VERSION >= 0x01040000L) || (OPENDMARC_LIB_VERSION == 0x00000000L)
s = opendmarc_policy_store_dkim(dmarc, domain, selector, dkim_to_dmarc(r), comment);
#else
s = opendmarc_policy_store_dkim(dmarc, domain, dkim_to_dmarc(r), comment);
#endif
Thank you!
The text was updated successfully, but these errors were encountered: