List all users on one page
Is there a way to force all users to be listed on one page, versus having to click through the alphabetical letters?
-- Brian J. Luria DVM, DACVIM Bluepearl Veterinary Partners Florida Veterinary Specialists Tampa: (813) 933-8944 Clearwater: (727) 572-0132 Brandon: (813) 571-3303 www.bluepearlvet.com
Brian Luria wrote:
Is there a way to force all users to be listed on one page, versus having to click through the alphabetical letters?
If your Mailman version is 2.1.10 or later, set admin_member_chunksize on the list's General Options page to a number greater than the number of list members.
For older versions, set it with bin/withlist or bin/config_list.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
Thank you. Looks like I have 2.1.9 - (have to look at upgrading)
Where is the best place for me to start understanding terminal commands like you list there. I am honestly not even sure where to start. I am only used to the web based interface.
On Wed, Apr 21, 2010 at 5:29 PM, Mark Sapiro <mark@msapiro.net> wrote:
Brian Luria wrote:
Is there a way to force all users to be listed on one page, versus having to click through the alphabetical letters?
If your Mailman version is 2.1.10 or later, set admin_member_chunksize on the list's General Options page to a number greater than the number of list members.
For older versions, set it with bin/withlist or bin/config_list.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
-- Brian J. Luria DVM, DACVIM Bluepearl Veterinary Partners Florida Veterinary Specialists Tampa: (813) 933-8944 Clearwater: (727) 572-0132 Brandon: (813) 571-3303 www.bluepearlvet.com
Brian Luria
Where is the best place for me to start understanding terminal commands like you list there. I am honestly not even sure where to start. I am only used to the web based interface.
The FAQ at <http://wiki.list.org/x/z4A9> lists the commands and what they do.
Each command has a --help option that gives the usage and options for the command.
The two most useful commands for manipulating non GUI things or things for all lists at once are bin/withlist and bin/config_list. Withlist can run Python scripts against one or all lists and can invoke an interactive Python interpreter with a list instance that can be examined and changed interactively, but this requires both Python knowledge and some knowledge of Mailman internals.
bin/config_list is more "friendly". For example, in this case you would just create a file containing the single line
admin_member_chunksize = 100
or whatever number you need, and run
bin/config_list --inputfile /path/to/above/file listname
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (2)
-
Brian Luria
-
Mark Sapiro