Is there a way to change the moderation flag of a member of a list from the command line, with Mailman?
|
feedback
|
|
There is a python script at http://www.msapiro.net/scripts/set_mod.py that might do what you need. I'm not aware of anything that actually comes with mailman to do this. | |||
|
feedback
|
|
Turn ON moderated bit: /usr/lib/mailman/bin/withlist -r mod.set $currentlist $user 1 Turn OFF moderated bit: /usr/lib/mailman/bin/withlist -r mod.set $currentlist $user 0 In the above 2 statements, replace "$currentlist" with the list name and "$user" with the member's subscribed address. Using "mod.py":
| |||
|
feedback
|