Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMailSmtpServerMainHostAndPort (0.35 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.java

            final SMailPostalParkingLot parkingLot = new SMailPostalParkingLot();
            final SMailPostalMotorbike motorbike = new SMailPostalMotorbike();
            final String hostAndPort = fessConfig.getMailSmtpServerMainHostAndPort();
            final List<String> hostPortList = DfStringUtil.splitListTrimmed(hostAndPort, ":");
            motorbike.registerConnectionInfo(hostPortList.get(0), Integer.parseInt(hostPortList.get(1)));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * comment: SMTP server settings for main: host:port
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getMailSmtpServerMainHostAndPort();
    
        /**
         * Get the value for the key 'mail.subject.test.prefix'. <br>
         * The value is, e.g. [Test] <br>
         * comment: The prefix of subject to show test environment or not
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top