Removed some debug logs, changed a debug log to normal
This commit is contained in:
parent
9227e972fa
commit
cb14c6bd63
@ -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
|
||||
|
3
TODO
3
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.
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user