⇤ ← Revision 1 as of 2008-07-31 13:54:46
Size: 1117
Comment:
|
Size: 1267
Comment: Added note about admin_member_chunksize on General Options.
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
#pragma page-filename DOC/versions/7602237 | #pragma page-filename DOC/versions/7602250 |
Line 4: | Line 4: |
Note: since Mailman 2.1.10, the information below is not needed. admin_member_chunksize is a setting on the list's web admin General Options page. |
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.
Note: since Mailman 2.1.10, the information below is not needed. admin_member_chunksize is a setting on the list's web admin General Options page.
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.