Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getMailHostname (0.05 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)
Back to top