Add new comment
|
Hi, Thanks for the article it was a very good starting point for me and I'd also like to contribute with my two comments: - pflogsumm is capable of sending reports for yesterday and today so there's no need to change the rotation of the mail log files. You can just simply execute: cat /var/log/mail.log.0 /var/log/mail.log | pflogsumm -d yesterday --problems_first This is going to give you statistics for yesterday. I personally created a file in /etc/cron.daily/ with this content: #!/bin/sh This gives me statistics for yesterday 0-24 and also for today 0-6:47 am and also lists the content of the queues. - If for some reason this was not working for you than it is very important to use the right tool for the log rotation. /var/log/mail* files are rotated by a script which comes with the sysklogd package. In your solution /var/log/mail.log is rotated twice, once by the sysklogd script on Sunday and once every day at 6:25. Which will result in a strange situation and you have only 4 days of history, because the sysklogd keeps only 4 versions. So you can either disable the weekly rotation and use the rotation you described or do it the "proper way". I'm saying proper because the sysklogd rotation is doing other things as well. You need to edit two files in order to change the default (weekly rotation with 4 weeks of history) behavior. Add mail to the daily rotation script: /etc/cron.daily/sysklogd Add these lines: (-c 14 means keep 14 days of history) # Non default logrotate for mail logs Disable mail logs in the weekly rotation file: /etc/cron.weekly/sysklogd modify this line: for LOG in `syslogd-listfiles --weekly` to look like this: for LOG in `syslogd-listfiles --weekly -s mail`
Reply |



Recent comments
1 day 14 hours ago
1 day 18 hours ago
1 day 19 hours ago
1 day 20 hours ago
1 day 20 hours ago
2 days 8 hours ago
2 days 21 hours ago
3 days 1 hour ago
3 days 2 hours ago
3 days 21 hours ago