diff --git a/exec/load/fido_syscfg.js b/exec/load/fido_syscfg.js
index 466dd16e8f610fed2110fd62616de5a354d32ec1..b57a95200db24842dede36f012ea122d74c2e0d5 100644
--- a/exec/load/fido_syscfg.js
+++ b/exec/load/fido_syscfg.js
@@ -34,7 +34,11 @@ function SBBSEchoCfg ()
 			throw("Unable to open '"+ecfg.name+"'");
 
 		this.inbound = ecfg.iniGetValue(null, "Inbound", "../fido/nonsecure");
+		if (this.inbound !== null)
+			this.inb.push(this.inbound);
 		this.secure_inbound = ecfg.iniGetValue(null, "SecureInbound", "../fido/inbound");
+		if (this.secure_inbound !== null)
+			this.inb.push(this.secure_inbound);
 		this.outbound = ecfg.iniGetValue(null, "Outbound", "../fido/outbound");
 		this.is_flo = ecfg.iniGetValue(null, "BinkleyStyleOutbound", false);
 		ecfg.iniGetSections('node:').forEach(function(section) {