Greetings,
I do have mailman 3 installed via virtualenv and it is up an running. Now I'd like to create a mailing list, but I can't find any instructions how I should do this.
Is there a resource online I missed? If not, can anyone on this list tell me how to do it preferrably using a command line tool?
TIA
p@rick
-- [*] sys4 AG
https://sys4.de, +49 (89) 30 90 46 64 Schleißheimer Straße 26/MG,80333 München
Sitz der Gesellschaft: München, Amtsgericht München: HRB 199263 Vorstand: Patrick Ben Koetter, Marc Schiffbauer, Wolfgang Stief Aufsichtsratsvorsitzender: Florian Kirstein
On 3/10/20 6:44 AM, Patrick Ben Koetter wrote:
Greetings,
I do have mailman 3 installed via virtualenv and it is up an running. Now I'd like to create a mailing list, but I can't find any instructions how I should do this.
Is there a resource online I missed? If not, can anyone on this list tell me how to do it preferrably using a command line tool?
There is a bin/mailman command in your venv. It needs to be run with a -C option pointing to your mailman.cfg. I use a wrapper like
#!/bin/bash
exec /opt/mailman/mm/venv/bin/mailman
-C "/opt/mailman/mm/mailman.cfg"
$@
Give the mailman command with no args for a list of sub-commands and ultimately
mailman create --help
for instructions on creating a list. See <https://mailman.readthedocs.io/en/latest/src/mailman/commands/docs/commands.html>
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (2)
-
Mark Sapiro
-
Patrick Ben Koetter