From 4fab6a577f532b6746222e50eebf1c16897dda89 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Thu, 21 Jul 2016 23:24:14 +0000 Subject: [PATCH] Populate SBBSEchoCfg.inb[] for SBBSEcho v2 config files. --- exec/load/fido_syscfg.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exec/load/fido_syscfg.js b/exec/load/fido_syscfg.js index 466dd16e8f..b57a95200d 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) { -- GitLab