
Robert Heller wrote:
I'm using all native Debian 12 packages, installed via apt.
Some notes from my install (Debian 12):
| # install missing dependencies: | apt install python3-pymysql python3-mysqldb | | apt install mailman3-full | | # fix broken settings: | vim /usr/share/mailman3-web/settings.py | #----- | Q_CLUSTER = { | 'timeout': 300, | 'save_limit': 100, | 'orm': 'default', | 'poll': 5, | 'retry': 360, | } | #----- | | # fix auto-generated passwords: | vim /etc/mailman3/mailman.cfg | # remove "/" and "-" from admin_pass | vim /etc/mailman3/mailman-web.py | # remove "/" and "-" from MAILMAN_REST_API_PASS | | # fix "django.db.models.AutoField" errors in log | vim /etc/mailman3/mailman-web.py | #----- | DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' | #-----
HTH -thh