View Single Post
  #2 (permalink)  
Old 06-27-09, 11:33 PM
wirehopper's Avatar
wirehopper wirehopper is offline
Community Liaison
 
Join Date: Feb 2006
Posts: 1,562
Thanks: 2
Thanked 25 Times in 25 Posts
If it is an HTML site - you could use find, like so:

find $HOME/public_html -mtime +60 | mail -s "Files older than 60 days" email@domain.com

Details on different find options: Find files by access, modification date under Linux or UNIX

If you're using a CMS, I'd recommend creating some sort of system to do the same thing with the content from the database.

A simple email with links to page the organization is reponsible for should work.

You could also get more sophisticated and issue the emails directly to the people that posted the content.

Good luck.
Reply With Quote