Hi,I installed openldap 2.4.40 on ubuntu 12.04LTSI enabled ppolicy while configuring the installation../configure --enable-hdb --enable-ppolicy --enable-syncprov --with-tlsI want to specify a password check module (to check for minimum upper cases, lower cases, digits, etc).I got the module from http://ltb-project.org/wiki/documentation/openldap-ppolicy-check-passwordI created a password policy very similar to the one given in the documentation:dn: cn=default,ou=policies,dc=example,dc=comcn: defaultobjectClass: pwdPolicyobjectClass: personobjectClass: toppwdAllowUserChange: TRUEpwdAttribute: userPasswordpwdCheckQuality:1pwdCheckModule: check_password.sopwdExpireWarning: 600pwdFailureCountInterval: 30pwdGraceAuthNLimit:0pwdInHistory: 53pwdLockout: TRUEpwdLockoutDuration:600pwdMaxAge:1200pwdMaxFailure:3pwdMinAge: 0pwdMinLength:8pwdMustChange: FALSEpwdSafeModify: FALSEsn: dummy valueslapd.conf:modulepath /usr/local/libmoduleload check_password.so
While adding this password policy to ldap, I get the error:ldap_add: Object class violation (65)attribute info: attribute 'pwdCheckModule' not allowedThe log level is 256 and doesn't say much besides giving the same error.Let me know where I have gone wrong.