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

Fix errors when outbound directory does not exist (create it):

  Locking c:\binkd\outbound\00da02bc.bsy
  Error 2 creating c:\binkd\outbound\00da02bc.bsy
  Failed to set date in the future fdate (-1) != future (1687417603)
Also, added some debug dump of "outbound_roots" which appears to contain
duplicates, at least when the ftn_domains.ini file is not in use:
 Outbound roots: ["c:\\binkd\\outbound","c:\\binkd\\outbound"]
parent 56b538df
No related branches found
No related tags found
No related merge requests found
......@@ -762,6 +762,7 @@ function run_outbound(ran)
Object.keys(FIDO.FTNDomains.outboundMap).forEach(function(key) {
outbound_roots.push(FIDO.FTNDomains.outboundMap[key]);
});
log(LOG_DEBUG, "Outbound roots: " + JSON.stringify(outbound_roots, null, 0));
outbound_roots.forEach(function(oroot) {
var dirs;
......@@ -773,6 +774,8 @@ function run_outbound(ran)
if (file_isdir(oroot))
addDir(oroot);
else
mkpath(oroot);
dirs = directory(oroot+'.*', 0);
dirs.forEach(function(dir) {
var pnts;
......
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