Revision 1 as of 2008-07-31 13:54:46

Clear message

4.30. How do I configure the admin webpage to show more members per page?

Change the setting in DEFAULT_ADMIN_MEMBER_CHUNKSIZE in mm_cfg.py The description is in Defaults.py.

This will not work for lists created prior to this change. For them, you need to change the list configuration by using 'withlist':

 $ bin/withlist -l somelist
 Loading list somelist (locked)
 The variable `m' is the somelist MailList instance
 >>> m.admin_member_chunksize
 30
 >>> m.admin_member_chunksize = 100
 >>> m.Save()
 >>>                           <- control-D
 Unlocking (but not saving) list: somelist
 Finalizing

You can also do this with config_list. E.g., put the one line

 admin_member_chunksize = 100

in input_file and then do

 $ bin/config_list -i input_file somelist

Last changed on Sat Mar 4 17:55:26 2006 by Mark Sapiro Converted from the Mailman FAQ Wizard

This is one of many Frequently Asked Questions.