Increased mbmsg report counters

This commit is contained in:
Michiel Broek 2002-10-27 17:11:27 +00:00
parent 926ee53be1
commit 442f6e5d19
3 changed files with 8 additions and 2 deletions

View File

@ -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.

2
TODO
View File

@ -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

View File

@ -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));