Charles Marcus wrote:
>
>Answering myself, found it digging through Defaults.py...
>
>DEFAULT_ADMIN_MEMBER_CHUNKSIZE = 30 is the default, which I just 
>counted, and I currently have 30, so that was it...
>
>Bumped it up to 50 in mm_cfg.py and restarted mailman...


Unfortunately, that won't help your existing lists. That only sets the
default for new lists. The setting for an existing list is the
admin_member_chunksize list attribute. Beginning in Mailman 2.1.10,
this setting is available on the list's General Options page. In older
versions, you need to do something like

#!/bin/bash
cd ~mailman
f=mktemp
echo admin_member_chunksize = 50 > $f
bin/config_list -i $f list_name
rm $f

-- 
Mark Sapiro <[EMAIL PROTECTED]>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
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/
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&amp;file=faq01.027.htp

Reply via email to