
Oct. 24, 2003
4:10 a.m.
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