Some users in the past have found that /var/log/qpsmtpd fills up with files that end in ".u" instead of ".s".
Multilog files will end in ".u" if something happened that prevented the normal renaming process.
spamfilter-stats-7.pl can scan these files with no problem, but you have to tell it to do so.
The default mailstats.cron file looks like this:# Spam Filter Statistics Crond Entry
#+-----------------------Minute (0-59)
#| +-------------------Hour of Day (0-23)
#| | +---------------Day of Month (1-31)
#| | | +-----------Month of Year (1-12)
#| | | | +-------Day of Week (0=Sun,6=Sat)
#v v v v v
0 0 * * * root perl /usr/bin/spamfilter-stats-7.pl /var/log/qpsmtpd/*.s /var/log/qpsmtpd/current
If you change ".../*.s" to ".../*.[us]" you will process both .u and .s files. The result would look like this:# Spam Filter Statistics Crond Entry
#+-----------------------Minute (0-59)
#| +-------------------Hour of Day (0-23)
#| | +---------------Day of Month (1-31)
#| | | +-----------Month of Year (1-12)
#| | | | +-------Day of Week (0=Sun,6=Sat)
#v v v v v
0 0 * * * root perl /usr/bin/spamfilter-stats-7.pl /var/log/qpsmtpd/*.[us] /var/log/qpsmtpd/current
Lastly, the current version supports the "logterse" plugin - I don't know if that means it *requires* the logterse plugin, or not...