Ken Alker writes:
I see the below in my mailman.log, yet I installed uwsgi and NOT gunicorn. My mainmanweb.service file includes "ExecStart=/opt/mailman/venv/bin/uwsgi --ini /etc/mailman3/uwsgi.ini" and not the gunicorn equivalent. Does this log entry make sense in my case?
[2023-06-22 12:44:36 -0700] [411132] [INFO] Starting gunicorn 20.1.0
Yes, it makes sense. Mailman 3 core is basically an application which manages a webserver that provides the REST API, a database of domains, users, and lists, an LMTP server for incoming posts and an SMTP client for outgoing distribution. Mailman uses gunicorn to provide the webserver.
Installation of gunicorn is handled as a package dependency, so you probably wouldn't notice unless you were watching the installation process very carefully.