The feature FFR_LUA_ONLY_SIGNING was added on 568adc1 in 2013-12-28. However its configure option was removed as "unknown feature", on 9628f53 in 2014-03-17, without changing the source code, including code for checking lua options in configure.ac.
Since then the feature cannot be enabled by using configure options.
It can be fix by one of below:
- add
FFR_FEATURE([lua_only_signing], [Lua setup script exclusive signing control]) in configure.ac
- replace
FFR_LUA_ONLY_SIGNING in source code to USE_LUA, and remove check for $enable_lua_only_signing in configure.ac, then enabled the feature when using lua, by default. As the feature does not take effect without adding LuaOnlySigning in opendkim.conf, it seems it is not harmful.
- remove this feature completely. It seems that this feature had not been used by anyone over 10 years.
The feature FFR_LUA_ONLY_SIGNING was added on 568adc1 in 2013-12-28. However its configure option was removed as "unknown feature", on 9628f53 in 2014-03-17, without changing the source code, including code for checking lua options in configure.ac.
Since then the feature cannot be enabled by using configure options.
It can be fix by one of below:
FFR_FEATURE([lua_only_signing], [Lua setup script exclusive signing control])inconfigure.acFFR_LUA_ONLY_SIGNINGin source code toUSE_LUA, and remove check for$enable_lua_only_signinginconfigure.ac, then enabled the feature when using lua, by default. As the feature does not take effect without addingLuaOnlySigninginopendkim.conf, it seems it is not harmful.