On 6/9/20 7:26 PM, matthew@alberti.us wrote:
Has anyone been able to get Mailman3 running stable on Ubuntu 20.04?
Hi *,
yes indeed. Running nicely for a couple of lists here, largest one has a few thousand users.
created mariadb, ran apt-get install mariadb-client, dbconfig-mysql, python3-pymysql.
did not run apt-get install mailman3-full, but one by one mailman3, mailman3-web- python-mailman-hyperkitty.
install did not run cleanly, some hand editing of /etc/dbconfig-common and dpkg-reconfigure was neccessary.
As incoming posts from non-subscribers vanished somehow, we had to edit /usr/lib/python3/dist-packages/mailman/utilities/uid.py
near the end:
x = random.random() + right_now % 1.0 + time.clock() % 1.0
changed to
x = random.random() + right_now % 1.0 + time.process_time() % 1.0
Webserver is nginx.
Running nicely, yes, however, an upgrade to the current version outside the reach of Ubuntu's update tools is planned soon. The Ubuntu install is a good start, though - never having encountered django, uwsgi and python venv environments seemed a bit heavy at first.
Best regards Peter