diff --git a/ChangeLog b/ChangeLog index 2a8a7c85..63ec6468 100644 --- a/ChangeLog +++ b/ChangeLog @@ -20,6 +20,8 @@ v0.35.06 for real deleted files. Start the bbs again (mbstat open). Check new settings in nodes setup, screen 6, items 9 and 10. + Check TIC magic records (menu 10.4), all filenames tested are + now uppercase 8.3 names, adjust your filemasks. templates: The html templates are changed by Joachim Kuwan and now they diff --git a/TODO b/TODO index e1556969..6c168373 100644 --- a/TODO +++ b/TODO @@ -40,6 +40,9 @@ mbsebbs: N: OLR, implement file requests. + N: If a new mailcheck takes longer then the idle timeout, the user is + disconnected as soon as the mailcheck is ready. + mbfido: U: Code cleanup and make a structure in this program. Remove duplicate or similar functions. diff --git a/mbfido/addbbs.c b/mbfido/addbbs.c index 0935a24f..7fac7061 100644 --- a/mbfido/addbbs.c +++ b/mbfido/addbbs.c @@ -312,7 +312,6 @@ int Add_BBS() * Handle the Keep number of files option */ if (TIC.KeepNum) { - Syslog('f', "AddBBS, handle KeepNum %d", TIC.KeepNum); if ((fdb = fopen(fdbname, "r")) != NULL) { while (fread(&file, sizeof(file), 1, fdb) == 1) { @@ -329,7 +328,6 @@ int Add_BBS() } if (Found) { Keep++; - Syslog('f', "Add \"%s\" to keeplist", file.LName); fill_fdlist(&fdl, file.LName, file.UploadDate); } } diff --git a/mbfido/ptic.c b/mbfido/ptic.c index 185e3d1e..fe633380 100644 --- a/mbfido/ptic.c +++ b/mbfido/ptic.c @@ -782,7 +782,6 @@ int ProcessTic(fa_list *sbl) */ for (tmpq = qal; tmpq; tmpq = tmpq->next) { if (tmpq->send) { - Syslog('f', "Add SB %u:%u/%u", tmpq->aka.zone, tmpq->aka.net, tmpq->aka.node); sprintf(sbe, "%u:%u/%u", tmpq->aka.zone, tmpq->aka.net, tmpq->aka.node); fill_list(&sbl, sbe, NULL); } else { @@ -791,9 +790,6 @@ int ProcessTic(fa_list *sbl) } uniq_list(&sbl); sort_list(&sbl); - - for (tmp = sbl; tmp; tmp = tmp->next) - Syslog('f', "final SB list %s", ascfnode(tmp->addr, 0x0f)); /* * Now forward this file to the qualified downlinks. diff --git a/mbfido/queue.c b/mbfido/queue.c index 9cef94b2..95f1d701 100644 --- a/mbfido/queue.c +++ b/mbfido/queue.c @@ -116,7 +116,9 @@ void flush_dir(char *ndir) * If we route via another aka, change everything. */ if (nodes.RouteVia.zone) { - Syslog('p', "Route Via %s", aka2str(nodes.RouteVia)); + p = xstrcpy(aka2str(nodenr)); + Syslog('+', "Route to %s via %s", p, aka2str(nodes.RouteVia)); + free(p); noden.zone = nodes.RouteVia.zone; noden.net = nodes.RouteVia.net; noden.node = nodes.RouteVia.node; @@ -283,8 +285,6 @@ void flush_dir(char *ndir) * Do this until we find a new name or if the last digit is a '9' or 'z'. * Purge archives older then toss_days. */ - Syslog('p', "Pulled %s", fname); - nr = oldnr = '0'; if (nodes.ARCmailAlpha) maxnr = 'z'; @@ -363,7 +363,6 @@ void flush_dir(char *ndir) * archiver program will complain. */ if (fsize == 0L) { - Syslog('m', "Erasing zero bytes file %s", arcfile); unlink(arcfile); Attach = TRUE; }