Skip to content
Snippets Groups Projects
Commit e32e21f3 authored by rswindell's avatar rswindell
Browse files

Nelgin's change:

it should fix the issue of tic files being generated with @domain added to
the From: line and putting tickit into an endless loop.
parent b03b6511
Branches
Tags
No related merge requests found
......@@ -69,6 +69,8 @@ SBBSEchoCfg.prototype.get_ticpw = function(node)
return this.ticpass[n];
if (n === 'ALL')
break;
if (n.indexOf('@') !== -1)
n = n.replace(/@.*$/,'');
if (n.indexOf('ALL') !== -1)
n = n.replace(/[0-9]+[^0-9]ALL$/, 'ALL');
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment