Sysop:Mailman
Zur Navigation springen
Zur Suche springen
Mailman Admin
How can I change various non public available settings for a list? For example: After how many members will mailman switch to alphabetical order?
You can get a python shell and a config object for a list with the `withlist` command:
# /usr/lib/mailman/bin/withlist -l test_2 Loading list test_2 (locked) The variable `m' is the test_2 MailList instance >>> m.admin_member_chunksize 30 >>> m.admin_member_chunksize = 500 >>> m.Save() >>> <<CRTL-D>>>