Also check /var/mail you may have large mail files.
If /var/mail files are large take a loot at them, it will probably be output from cronjobs. You may wish to divert these messages to files in another partition (say > /logs/cron.out 2>&1 ) or to /dev/null ( > /dev/null 2>&1).
Output from du can sometimes be quite large, you may wish to filter it like this: -
cd /var
du -a|awk '$1 > 50000 {print $0}'
Also check /var/tmp
Ged Jones
Top man