Excerpts from Simon Liebold via Mailman-users's message of May 29, 2017 2:16 pm:
Am 28.05.2017 um 22:24 schrieb Mark Sapiro:
'Delete this message' is in the 'message' view. "Delete this thread" is in the 'thread' view.
Now found the message view. Thanks.
HyperKitty requires Django<1.11. The comment in the requirements in setup.py implies this is only a django-haystack requirement
"Django>=1.8", # Don't upgrade to 1.11 until django-haystack supports it: # https://github.com/django-haystack/django-haystack/pull/1499 "Django<1.11",
but since it works for me with Django 1.10, you might want to try that.
OK, I was still running an RC version. Silly me.
In particular, this looks like Django 1.11 bug <https://code.djangoproject.com/ticket/27975>.
Which was closed in the release version that I initially upgraded to (1.11.1).
Now, I get to see the confirmation view and upon confirming I see these (luckily different) errors like below (same with Django 1.10):
Could not delete message P2GJLK4JPDU2K6ZKBSDUWASF2TVHCJTT: (1146, "Table 'mailmansuite.django_q_ormq' doesn't exist") Could not delete message 4I2TRZTFXMMH2XRQAS73IAEIYROFE5YM: (1146, "Table 'mailmansuite.django_q_ormq' doesn't exist")
You may have to do python manage.py makemigrations
after adding a new
INSTALLED_APPLICATIONS and before running python manage.py migrate
Hope that helps!
-- thanks, Abhilash Raj