From 442f6e5d19d50c356ac11a2a19e38a2c10dd644a Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Sun, 27 Oct 2002 17:11:27 +0000 Subject: [PATCH] Increased mbmsg report counters --- ChangeLog | 4 ++++ TODO | 2 ++ mbfido/mbmsg.c | 4 ++-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 721ec028..ddfcbb35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,10 @@ v0.35.05 19-Oct-2002 Fixed crash with incoming YooHoo session with bad password. + mbmsg: + The total counters in the logfile are increased to 6 digits. + + v0.35.04 29-Sep-2002 - 19-Oct-2002. diff --git a/TODO b/TODO index a25a5532..1a81733f 100644 --- a/TODO +++ b/TODO @@ -85,6 +85,8 @@ mbfido: L: Maybe store echomail for unknown areas in badmail area. + N: Make ik possible to only virus scan the complete archives. + mbcico: L: Implement modem connect response translation for ISDN lines, i.e. make the CAUSE responses human readable. see McMail for this diff --git a/mbfido/mbmsg.c b/mbfido/mbmsg.c index 2af60200..88afbfe9 100644 --- a/mbfido/mbmsg.c +++ b/mbfido/mbmsg.c @@ -235,9 +235,9 @@ void die(int onsig) Syslog('+', "Last msg area %s", msgs.Name); if (are_tot || are_proc || msg_link) - Syslog('+', "Areas [%5d] Processed [%5d] Linked [%5d]", are_tot, are_proc, msg_link); + Syslog('+', "Areas [%6d] Processed [%6d] Linked [%6d]", are_tot, are_proc, msg_link); if (msg_tot || msg_del) - Syslog('+', "Msgs [%5d] Deleted [%5d]", msg_tot, msg_del); + Syslog('+', "Msgs [%6d] Deleted [%6d]", msg_tot, msg_del); t_end = time(NULL); Syslog(' ', "MBMSG finished in %s", t_elapsed(t_start, t_end));