Differences between revisions 2 and 3
Revision 2 as of 2008-07-31 14:05:19
Size: 1479
Editor: dunxd
Comment: Migrated to Confluence 4.0
Revision 3 as of 2015-01-31 02:36:58
Size: 1413
Editor: msapiro
Comment: Removed FAQ Wizard last edited
Deletions are marked like this. Additions are marked like this.
Line 51: Line 51:
''Last changed on Sun Jan 21 17:25:22 2007 by'' Mark Sapiro<<BR>> Converted from the Mailman FAQ Wizard Converted from the Mailman FAQ Wizard

4.38. How to change some configuration for ALL lists?

Q: I am the site administrator and I'd like to change the configuration of ALL existing lists. How to do that?

A: Use /usr/lib/mailman/bin/config_list

Here's an example:

 1. Login your shell
 2. Create a file (/path/to/configfile) and add your configuration *)
 3. Change the configuration using this shell script:
     for i in $(/usr/lib/mailman/bin/list_lists -b) ; do /usr/lib/mailman/bin/config_list -i /path/to/configfile $i ; done

If you only want to change some lists but not all, replace the

 for i in $(/usr/lib/mailman/bin/list_lists -b)

in the above script with for example

 for i in list1 list2 list3

To check for errors before doing the changes, you can simulate your changes using the -c flag. see:

 config_list --help


*) Annotations for configfile:

  • Only use lower case directives!
  • Use 0 or 1 for boolean variables
  • You can add as few or as many directives as you like
  • To get an example of a list's configuration, type

 /usr/lib/mailman/bin/config_list -o - [list_name]

Converted from the Mailman FAQ Wizard

This is one of many Frequently Asked Questions.

MailmanWiki: DOC/4.38 How to change some configuration for ALL lists? (last edited 2015-01-31 02:36:58 by msapiro)