diff --git a/ChangeLog b/ChangeLog index 078399e5..0abe8c4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,5 @@ $Id$ -WARNING, OUTBOUND QUEUE MAY NOT WORK WITH THIS VERSION, BE CAREFULL !! MBSEBBS History. @@ -42,6 +41,7 @@ v0.35.03 06-Jul-2002 Implemented directory inbound tossing and outbound queueing. Rewrote the outbound queue system, the queue now works for files also. + Removed debug logline with extract of FILE_ID.DIZ. newuser: Check for Unix accounts is now case sensitive. diff --git a/mbfido/addpkt.c b/mbfido/addpkt.c index c20a64b5..90600b51 100644 --- a/mbfido/addpkt.c +++ b/mbfido/addpkt.c @@ -113,7 +113,6 @@ FILE *CreatePkt(char *Queue, fidoaddr Orig, fidoaddr Dest, char *Extension) WriteError("$Can't create Queue %s", Queue); return NULL; } - Syslog('p', "CreatePkt(%s, %s, %s)", Queue, aka2str(Dest), Extension); /* * Write .PKT header, see FSC-0039 rev. 4 @@ -192,7 +191,6 @@ FILE *OpenPkt(fidoaddr Orig, fidoaddr Dest, char *Extension) sprintf(Queue, "%s/%d.%d.%d.%d/mailpkt.%s", CFG.out_queue, Dest.zone, Dest.net, Dest.node, Dest.point, Extension); mkdirs(Queue, 0750); - Syslog('p', "OpenPkt(%s, %s)", aka2str(Dest), Extension); if (file_exist(Queue, R_OK)) qp = CreatePkt(Queue, Orig, Dest, Extension); diff --git a/mbfido/queue.c b/mbfido/queue.c index bf4c5b8f..e4bcc293 100644 --- a/mbfido/queue.c +++ b/mbfido/queue.c @@ -77,7 +77,6 @@ void flush_dir(char *ndir) free(temp); return; } - Syslog('p', "Processing outbound queue %s", temp); /* * Get the nodenumber from the filename @@ -380,7 +379,6 @@ void flush_dir(char *ndir) if (Attach && nodes.Session_out == S_DIRECT) attach(noden, arcfile, TFS, flavor); } - Syslog('p', "Done with ARCmail"); /* * Open directory again. @@ -489,7 +487,6 @@ void flush_dir(char *ndir) if (nodes.Session_out == S_DIR) chmod(arcfile, 0660); } - Syslog('p', "Done with netmail"); /* * Now add the files for the node, information is in the .filelist @@ -509,7 +506,6 @@ void flush_dir(char *ndir) while (fgets(buf, PATH_MAX, fp)) { Striplf(buf); - Syslog('p', "File: %s", buf); flavor = buf[0]; p = strchr(buf, ' '); p++; diff --git a/mbfido/utic.c b/mbfido/utic.c index ff9b873f..fed84c90 100644 --- a/mbfido/utic.c +++ b/mbfido/utic.c @@ -229,7 +229,6 @@ int Get_File_Id() while (j && isspace(TIC.File_Id[TIC.File_Id_Ct][j-1])) j--; TIC.File_Id[TIC.File_Id_Ct][j] = '\0'; - Syslog('f', "%2d/%2d: \"%s\"", TIC.File_Id_Ct, j, TIC.File_Id[TIC.File_Id_Ct]); TIC.File_Id_Ct++; } }