Hi everyone! I have freeradius 3.0.20 and use rlm_ldap as a conditional module in the authorize section like this authorize { ... sql if (notfound) { -ldap if (&LDAP-Group == '% {Group-Name}') { update { &control:Auth-Type: = ldap } } else { ... } } ... } I enable and disable (if it is not configured) module by creating/deleting a link in the mods-enabled/ directory, but when the module is disabled, I cannot use the attribute LDAP-Group in the condition because it loads dynamically when the module loads. I found this issue https://github.com/FreeRADIUS/freeradius-server/issues/1642 but it says nothing if a conditional module is used. How can I use dynamically loads attributes such as LDAP-Group or SQL-Group and conditional modules? -- Viktor