O binário que você está procurando é bin/config_list
. Pode ser usado para descarregar a configuração de uma lista ou definir alguma configuração da lista. Snippet da documentação do carteiro
config_list
This is a very powerful script which lets you view and modify a list's configuration variables from the command line. E.g. you can dump out all the list options into a plain text file (actually a valid Python file!), complete with comments explaining each variable. Or you can apply the configuration from such a file to a particular list.
Where this might be useful is if you wanted to change the web_page_url attribute on every list. You could create a file containing only the line
web_page_url = 'http://www.mynewsite.com/mailman-relocated/'
and then feed this file back to config_list for every list on your system. config_list only sets the list variables that it finds in the input file.
Primeiro, você precisa saber o nome da variável válida que controla o comportamento desejado. E para "Exigir destino explícito", a variável de correspondência é require_explicit_destination
. Você pode vê-lo ao navegar por este URL /mailman/admin/listname/privacy/recipient
no seu mailman.
Com base no exemplo, você deve fornecer um arquivo de texto com conteúdo
require_explicit_destination = 0
Em seguida, execute
bin/config_list -i mailman.txt listname