Matt Zimmerman wrote: > Mailman-users, > > I have about 1200 lists in mailman 2.1.8. I looking to try and clean these > lists up. Has anybody written any scripts to look through the archives and > find out when the last email was sent to each list. >
If I were looking for lists that haven't been posted to for a while, I'd use the modified time on the mbox files: cd /var/lib/mailman/archives/private find . -type f -name \*.mbox -mtime +180 -print -- Paul Tomblin <[EMAIL PROTECTED]> "Stay calm, be brave, and wait for the signs!" ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
