Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getMailSendMock (0.09 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * comment: Does it send mock mail? (true: no send actually, logging only)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getMailSendMock();
    
        /**
         * Is the property for the key 'mail.send.mock' true? <br>
         * The value is, e.g. true <br>
         * comment: Does it send mock mail? (true: no send actually, logging only)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

            assertEquals("0", fessEnv.getTimeAdjustTimeMillis());
            assertEquals(Long.valueOf(0), fessEnv.getTimeAdjustTimeMillisAsLong());
    
            // Test getMailSendMock and isMailSendMock
            assertEquals("true", fessEnv.getMailSendMock());
            assertTrue(fessEnv.isMailSendMock());
    
            // Test getMailSmtpServerMainHostAndPort
            assertEquals("localhost:25", fessEnv.getMailSmtpServerMainHostAndPort());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
Back to Top