Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sAMAccountName (0.06 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    final Attribute attribute = searchResult.getAttributes().get("sAMAccountName");
                    if (logger.isDebugEnabled()) {
                        logger.debug("sAMAccountName: {}", attribute);
                    }
                    if (attribute != null && attribute.get() instanceof String sAMAccountName) {
                        return OptionalEntity.of(sAMAccountName);
                    }
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    # Whether to use lowercase for LDAP permission names.
    ldap.lowercase.permission.name=false
    # Whether to allow empty permissions in LDAP.
    ldap.allow.empty.permission=true
    # Whether to use samAccountName for LDAP group.
    ldap.samaccountname.group=false
    
    # Whether LDAP role search for user is enabled.
    ldap.role.search.user.enabled=true
    # Whether LDAP role search for group is enabled.
    ldap.role.search.group.enabled=true
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
Back to top