Skip to content
Snippets Groups Projects
Commit 8e218bf3 authored by deuce's avatar deuce
Browse files

Also read the secure/insecure inbounds as separate keys.

parent d5d3ffcf
No related branches found
No related tags found
No related merge requests found
......@@ -13,9 +13,11 @@ function SBBSEchoCfg ()
throw("Unable to open '"+ecfg.name+"'");
while ((line=ecfg.readln(65535)) != undefined) {
m = line.match(/^\s*(?:secure_)?inbound\s+(.*)$/i);
if (m !== null)
this.inb.push(backslash(m[1]));
m = line.match(/^\s*(secure_|)inbound\s+(.*)$/i);
if (m !== null) {
this.inb.push(backslash(m[2]));
this[m[1].toLowerCase()+'inbound'] = m[2];
}
m = line.match(/^\s*pktpwd\s+(.*?)\s+(.*)\s*$/i);
if (m !== null)
......
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