From e32e21f3769bf65d522d43a2e53f683f4de7f7a2 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sun, 26 Aug 2018 21:10:47 +0000 Subject: [PATCH] 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. --- exec/load/fido_syscfg.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exec/load/fido_syscfg.js b/exec/load/fido_syscfg.js index eb19911157..601c4663a5 100644 --- a/exec/load/fido_syscfg.js +++ b/exec/load/fido_syscfg.js @@ -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 -- GitLab