Skip to content
Snippets Groups Projects
Commit 4fab6a57 authored by deuce's avatar deuce
Browse files

Populate SBBSEchoCfg.inb[] for SBBSEcho v2 config files.

parent 505c6e31
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment