
Sept. 21, 2025
12:56 p.m.
Hello to everyone:
You are all superheroes. Thank you for your coaching. I would like to share my experience with this post
https://lists.mailman3.org/archives/list/mailman-users@mailman3.org/message/...
I still had issue #931 after suggested work-around, so I used the following:
/opt/mailman/venv_mm/var/logs/*.log {
daily
dateext
rotate 90
maxage 90
missingok
sharedscripts
postrotate
if [ -r /opt/mailman/venv_mm/var/master.pid ]; then
#sudo -u mailman /opt/mailman/venv_mm/bin/mailman restart &>/dev/null || true
systemctl restart mailmanweb mailman3
fi
if [ -r /opt/mailman/venv_mm/var/gunicorn.pid ]; then
PID=cat /opt/mailman/venv_mm/var/gunicorn.pid
kill -s USR1 $PID
fi
endscript
}