Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMailHostname (0.04 sec)

  1. 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)
  2. 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