Differences between revisions 2 and 3
Revision 2 as of 2008-11-23 21:55:52
Size: 701
Editor: msapiro
Comment: Migrated to Confluence 4.0
Revision 3 as of 2015-02-21 07:37:04
Size: 707
Editor: JimTittsler
Comment: command text styling consistency
Deletions are marked like this. Additions are marked like this.
Line 32: Line 32:
{{{bin/config_list --help}}} {{{
bin/config_list --help
}}}

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)