> [root (at mark) www ~]# ls -l /etc/logrotate.d
With the exception of the following config (below), your files all appear
to the be the correct size.
> -rw-r--r-- 1 root root 678 Feb 28 2005 openwebmail.logrotate
Are you still gettng the logrotate error via email?
My only other suggestion would be to look at this file
cat /etc/cron.daily/logrotate
#!/bin/sh
/usr/sbin/logrotate /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
/usr/bin/logger -t logrotate "ALERT exited abnormally with
[$EXITVALUE]"
fi
exit 0
Make sure that is correct.
-Brian