I'm stepping into some existing code which creates a new list via the REST API. I know this works because I can shell into the mailman3 box and run mailman lists
and it shows the newly created list. We're also submitting list config options via the /lists/<list id>/config
endpoint, but there's a specific key that we have in our config map that doesn't appear in the REST API docs and I'm wondering about it. We have an array of strings called moderator
that appears to send successfully. But looking at the docs for "Mailing list configuration" (https://docs.mailman3.org/projects/mailman/en/latest/src/mailman/rest/docs/l...) I don't see anything named moderator
The "Managing owners and moderators" docs (https://docs.mailman3.org/projects/mailman/en/latest/src/mailman/commands/do...) indicate that we can perform add owners and moderators via a Python shell, but don't indicate that it's possible to do it via REST. Is this true?