On Thu, 2003-10-23 at 23:10, Warren Hoffman wrote: > One of my associates set up content filters to reject attachments and other > things. He created a custom message to explain this. Now he wants to change > the message, but I cannot locate which file in /mailman holds the text (and > I did look at all of them). Can somebody tell me how I could find it. I do > know text fragments. > > Thanks!!! > > --Warren
for i in `find /var/mailman/ -type f` do; grep -H "fragment" $i; done This will search through every file in every subdirectory of /var/mailman and look for the word "fragment". If it finds a match, it prints out the files name. Good Luck - Jon Carnes ------------------------------------------------------ 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/ This message was sent to: [EMAIL PROTECTED] Unsubscribe or change your options at http://mail.python.org/mailman/options/mailman-users/archive%40jab.org
