I am using the following script to delete the Safari & Chrome caches upon login. It seems to work but I noticed it doesnt clear the Safari history.
#!/bin/sh
#Remove Safari and Chrome Cache
sudo -u $3 /bin/rm -rf /Users/$3/Library/Caches/com.apple.Safari
sudo -u $3 /bin/rm -rf /Users/$3/Library/Caches/Google/Chrome
Is that set somewhere else?