Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMailHostname (0.09 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java

                    private static final long serialVersionUID = 1L;
    
                    @Override
                    public String getMailHostname() {
                        return hostname;
                    }
                });
    
                assertEquals(hostname, ComponentUtil.getFessConfig().getMailHostname());
            }
        }
    
        // Test with null values
        public void test_nullValues() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                }
    
                @Override
                public boolean hasNotification() {
                    return false;
                }
    
                @Override
                public String getMailHostname() {
                    return "mail-host";
                }
    
                @Override
                public String getNotificationTo() {
                    return "******@****.***";
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/Crawler.java

                    dataMap.put(StringUtil.decapitalize(entry.getKey()), entry.getValue());
                }
    
                String hostname = fessConfig.getMailHostname();
                if (StringUtil.isBlank(hostname)) {
                    hostname = ComponentUtil.getSystemHelper().getHostname();
                }
                dataMap.put("hostname", hostname);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g.  <br>
         * comment: Hostname for the mail server.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getMailHostname();
    
        /**
         * Get the value for the key 'mail.hostname' as {@link Integer}. <br>
         * The value is, e.g.  <br>
         * comment: Hostname for the mail server.
    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