Differences between revisions 1 and 2
Revision 1 as of 2008-11-23 21:55:51
Size: 705
Editor: msapiro
Comment:
Revision 2 as of 2008-11-23 21:55:52
Size: 701
Editor: msapiro
Comment: Migrated to Confluence 4.0
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma page-filename DOC/versions/14352680 #pragma page-filename DOC/versions/6914096
Line 31: Line 31:
{{{
bin/config_list --help
}}}
Line 35: Line 32:
 for more information. {{{bin/config_list --help}}}

for more information.

Suppose you want to change just one or a few attributes to the same value for all lists in an installation. You can do the following?

Put the desired setting(s) in a file. For this example, assume we want to set max_days_to_hold to 5 for all lists. Put this line

max_days_to_hold = 5

in a file.

For an overview of all settings, run

~mailman/bin/config_list -o - LISTNAME

for some LISTNAME.

Then run the following script

cd ~mailman
for list in `bin/list_lists --bare` ; do
bin/config_list -i /path/to/above/file $list
done

See

bin/config_list --help

for more information.

MailmanWiki: DOC/4.81 How do I change one setting on all lists? (last edited 2015-02-21 07:37:04 by JimTittsler)