Richard Pyne wrote: > I can't seem to find any way to set the personalization default. I want to > set the default for new lists to Full Personalization. Is there a > reasonable way to do this?
There is no configuration setting for this. You'd need to modify the InitVars() function in the Mailman/MailList.py module to set personalize to either literally 2 instead of the current 0, or better, change the current personalize = 0 to if mm_cfg.OWNERS_CAN_ENABLE_PERSONALIZATION: personalize = mm_cfg.DEFAULT_PERSONALIZE else: personalize = 0 and add DEFAULT_PERSONALIZE = 0 along with appropriate documentation to Defaults.py.in (or Defaults.py), and then put your desired setting in mm_cfg.py. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org 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