Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Underscores (0.18 sec)

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

            }
            return value;
        }
    
        /**
         * Replaces special characters in a string with underscores for group names.
         *
         * @param value the string to process
         * @return the string with special characters replaced by underscores
         */
        protected String replaceWithUnderscores(final String value) {
            return value.replaceAll("[/\\\\\\[\\]:;|=,+\\*?<>]", "_");
    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

    ldap.auth.validation=true
    # Maximum username length for LDAP.
    ldap.max.username.length=-1
    # Whether to ignore NetBIOS name in LDAP.
    ldap.ignore.netbios.name=true
    # Whether to allow underscores in LDAP group names.
    ldap.group.name.with.underscores=false
    # 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
    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