/lib/systemd/system/mailman3.service is in mailman3 3.1.1-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # systemd service template for mailman3 program
[Unit]
Description=Mailman3 server
Documentation=man:mailman(1)
Documentation=https://mailman.readthedocs.io/
ConditionPathExists=/etc/mailman3/mailman.cfg
[Service]
ExecStart=/usr/bin/mailman -C /etc/mailman3/mailman.cfg start
ExecReload=/usr/bin/mailman -C /etc/mailman3/mailman.cfg restart
ExecStop=/usr/bin/mailman -C /etc/mailman3/mailman.cfg stop
Type=forking
PIDFile=/run/mailman3/master.pid
SyslogIdentifier=mailman3
User=list
Group=list
[Install]
WantedBy=multi-user.target
|