Skip to content

Commit

Permalink
Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
C4J committed Jan 18, 2025
1 parent 8229458 commit 114a4b6
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 deletions.
Binary file modified b6Middleware/c4jMiddleware.jar
Binary file not shown.
Binary file modified b6Middleware/lib/devonly/i4jruntime.jar
Binary file not shown.
21 changes: 20 additions & 1 deletion b6Middleware/samples/basic/config/email.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,26 @@
<property name="mail.debug" value="true"/>
</configuration1>


<!-- Windows Domain -->

<configuration2>
<property name="mail.smtp.starttls.enable" value="false"/>
<property name="mail.smtp.host" value="smtp.email.com"/>
<property name="mail.smtp.socketFactory.port" value="587"/>
<property name="mail.smtp.user" value="[email protected]"/>
<property name="mail.smtp.socketFactory.fallback" value="true"/>
<property name="mail.mime.charset" value="utf-8"/>
<property name="mail.smtp.password" encrypted="no" value="password"/>
<property name="mail.smtp.socketFactory.class" value="javax.net.ssl.SSLSocketFactory"/>
<property name="mail.smtp.ssl.enable" value="false"/>
<property name="mail.smtp.ssl.protocols" value="TLSv1.2"/>
<property name="mail.smtp.ssl.trust" value="smtp.email.com"/>
<property name="mail.smtp.auth" value="true"/>
<property name="mail.smtp.port" value="587"/>
<property name="mail.smtp.from" value="[email protected]"/>
<property name="mail.debug" value="true"/>
</configuration2>

<!-- Distribution Lists are referred to within message mapping Config.xml -->

<distributionList id="Monitor" enabled="Y" maxFrequencyMins="5">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ public void run()
extensions = null;
}
}


filename_imported = "";
filename_transformed = "";

if (rsc.isValidPath(getInputPath()))
{

Expand Down
4 changes: 2 additions & 2 deletions b6Middleware/src/com/commander4j/mw/StartMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class StartMain
Logger logger = org.apache.logging.log4j.LogManager.getLogger((StartMain.class));
public ConfigLoad cfg;
public ConfigUpdate update;
public static String appVersion = "6.10";
public static String appVersion = "6.11";
public static int configVersion = 2;
Boolean running = false;
LogArchiveThread archiveLog;
Expand Down Expand Up @@ -154,7 +154,7 @@ public Boolean runMaps()

ept.addRow(new ExceptionMsg("Description",qa.getString(Common.props, qa.getRootURL()+"//description")));
ept.addRow(new ExceptionMsg("home folder",System.getProperty("user.dir")));
ept.addRow(new ExceptionMsg("version",qa.getString(Common.props, qa.getRootURL()+"//version")));
ept.addRow(new ExceptionMsg("Config Version",qa.getString(Common.props, qa.getRootURL()+"//version")));
ept.addRow(new ExceptionMsg("logArchiveRetentionDays",qa.getString(Common.props, qa.getRootURL()+"//logArchiveRetentionDays")));
ept.addRow(new ExceptionMsg("retryOpenFileCount",qa.getString(Common.props, qa.getRootURL()+"//retryOpenFileCount")));
ept.addRow(new ExceptionMsg("retryOpenFileDelay",qa.getString(Common.props, qa.getRootURL()+"//retryOpenFileDelay")));
Expand Down

0 comments on commit 114a4b6

Please sign in to comment.