Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 317 for dfmail (0.06 seconds)

  1. src/main/java/org/codelibs/fess/exception/WebApiException.java

            return statusCode;
        }
    
        /**
         * Constructs a WebApiException with the specified status code, message, and cause.
         *
         * @param statusCode The HTTP status code
         * @param message The detail message
         * @param cause The cause of this exception
         */
        public WebApiException(final int statusCode, final String message, final Throwable cause) {
            super(message, cause);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/exception/GsaConfigException.java

    public class GsaConfigException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new GSA configuration exception with the specified detail message and cause.
         *
         * @param message the detail message describing the configuration error
         * @param cause the cause of the exception
         */
        public GsaConfigException(final String message, final Throwable cause) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            mockProcessHelper.setExitValue(0);
            mockProcessHelper.setOutput("Windows execution");
    
            try {
                suggestJob.executeSuggestCreator();
            } catch (Exception e) {
                // May fail in test environment
            } finally {
                System.clearProperty("os.name");
            }
    
            List<String> cmdList = mockProcessHelper.getLastCommandList();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 31.6K bytes
    - Click Count (0)
  4. src/main/resources/log4j2.xml

    		<Property name="llm.log.level" value="${sys:fess.llm.log.level:-info}" />
    	</Properties>
    
    	<Appenders>
    		<RollingFile name="AppFile" fileName="${log.file.basedir}/${domain.name}.log"
    			filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
    			<PatternLayout><Pattern>${log.pattern}</Pattern></PatternLayout><!-- <EcsLayout serviceName="fess" eventDataset="app" /> -->
    			<Policies>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            assertNotNull(supportEmail);
    
            // Verify no double @ signs
            assertFalse("Technical email should not contain @@", technicalEmail.contains("@@"));
            assertFalse("Support email should not contain @@", supportEmail.contains("@@"));
    
            // Verify correct email format
            assertEquals("******@****.***", technicalEmail);
            assertEquals("******@****.***", supportEmail);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java

                    final Map<String, String> map = ParameterUtil.parse(fileAuth.getParameters());
                    final String domain = map.get("domain");
                    smbAuth.setDomain(domain == null ? StringUtil.EMPTY : domain);
                    smbAuth.setServer(fileAuth.getHostname());
                    smbAuth.setPort(fileAuth.getPort() == null ? -1 : fileAuth.getPort());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 24 02:07:40 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  7. src/main/resources/fess_config.properties

    #                                                       Mail
    #                                                     ------
    
    # Name to display in the From field of emails.
    mail.from.name = Administrator
    # Email address to use in the From field.
    mail.from.address = root@localhost
    # Hostname for the mail server.
    mail.hostname=
    
    # ----------------------------------------------------------
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryException.java

         *
         * @param message the detail message
         * @param cause the underlying cause of the exception
         */
        public DictionaryException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Creates a new DictionaryException with the specified message.
         *
         * @param message the detail message
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals(".*\\Qwww.domain.com/test\\E.*", systemHelper.normalizeConfigPath("contains:www.domain.com/test"));
            assertEquals(".*\\Q/test/\\E.*", systemHelper.normalizeConfigPath("contains:/test/"));
            assertEquals("www.domain.com/test", systemHelper.normalizeConfigPath("www.domain.com/test"));
            assertEquals(".*domain.com/.*", systemHelper.normalizeConfigPath(".*domain.com/.*"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 44.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/exception/LdapConfigurationException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new LDAP configuration exception with the specified detail message.
         *
         * @param message The detail message.
         */
        public LdapConfigurationException(final String message) {
            super(message);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.1K bytes
    - Click Count (0)
Back to Top