Looks like the SMTP logfiles use 12h clock for file naming, causing confusion in ordering, and potential overwrites:
-rw-r--r-- 1 apache apache 2556190 Jul 26 14:35 LM_SMTP_2007-07-26_01-36-18.txt
-rw-r--r-- 1 apache apache 61229 Jul 26 15:03 LM_SMTP_2007-07-26_03-02-20.txt
-rw-r--r-- 1 apache apache 681 Jul 26 12:47 LM_SMTP_2007-07-26_12-47-34.txt
-rw-r--r-- 1 apache apache 3233 Jul 26 12:50 LM_SMTP_2007-07-26_12-50-07.txt
This comes from here:
admin.php:876: $bugfn = './attach/LM_SMTP_'.date("Y-m-d_h-i-s").'.txt';
so that format string might be better as "Y-m-d_H-i-s"
- jmb