On Thu, 12 Aug 2004 00:32:40 +0200 Brad Knowles wrote: > At 3:21 PM -0400 2004-08-11, David Relson wrote: > > > Remember "deferred" is the default. I bet that selecting that > > checkbox justs adds a simple key/value pair like "all=yes" to the > > cgi request. The origin of the "discard all deferred items" (or > > whatever the wording is) can likely be found with: > > > > egrep -i -r -w "all.*defer" /usr/lib/mailman/ > > Keep in mind that this will bomb out with 20,000 files in a > given > directory, just like all other uses of wildcards passed to the shell. > You need to escape the wildcard and pass things through a "find ... | > xargs" command line, as I demonstrated earlier. > > If you meant to quote the wildcard and protect it from > evaluation > by the shell, you need to use single quotes and not double quotes.
Brad, In this case, you're mistaken. The double quotes work fine for this purpose (though the '-w' should be removed). The egrep command is intended for scanning mailman's source code with the goal of finding the relevant html (or html generator) in order to determine the cgi parameters for discarding deferred items. David ------------------------------------------------------ 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/