iredmail / iRedMail

Full-featured, open source mail server solution for mainstream Linux/BSD distributions.
https://www.iredmail.org/
GNU General Public License v3.0
1.46k stars 216 forks source link

fix: error --enable-aci requires --enable-dynacl #259

Closed dev-zhandos closed 3 months ago

dev-zhandos commented 3 months ago

There is an error error: --enable-aci requires --enable-dynacl during installation of iRedMail with the LDAP backend on FreeBSD. I think we need to enable dynacl for OpenLDAP due to conditions in the configuration file. More details can be found in the official git repository of OpenLDAP

486 if test $ol_enable_aci = yes ; then
487     if test $ol_enable_dynacl = no ; then
488         AC_MSG_ERROR([--enable-aci requires --enable-dynacl])
489     fi
490 elif test $ol_enable_aci = mod ; then
491     AC_MSG_ERROR([ACI build as dynamic module not supported (yet)])
492 fi
iredmail commented 3 months ago

Thanks for the contribution. :)