Jim Tittsler wrote:
On Mon, Dec 06, 2004 at 10:02:42PM -0500, Ezra Taylor wrote:
I would like to disable archiving for all list on my listserv. Can I just change the parameter DEFAULT_ARCHIVE to 0 and then restart mailman for this to take effect system wide?
That will only set the default for newly created lists.
If this is not possible, can I use withlist(how to create a
python to accomplish this).
Create noarchive.py: ### noarchive.py def noarchive(mlist): mlist.archive = 0 mlist.Save() ###
And then use bin/withlist to run it across all your lists: % bin/withlist -l -a -r noarchive
(Note this doesn't keep a list owner from reenabling archiving.)
Thanks Jim ------------------------------------------------------ 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/
