Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sAMAccountName (0.31 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)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'ldap.samaccountname.group'. <br>
         * The value is, e.g. false <br>
         * comment: Whether to use samAccountName for LDAP group.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLdapSamaccountnameGroup();
    
        /**
         * Is the property for the key 'ldap.samaccountname.group' true? <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top