Op 15 jan 2024, om 16:37 heeft Stephen J. Turnbull <turnbull.stephen.fw@u.tsukuba.ac.jp> het volgende geschreven:
Marco van Tol writes:
We run the following versions:
mailman-core: 3.3.9 mailman-core-api: 3.1 mailman-core-python: 3.11.6 hyperkitty: 1.3.8
It looks like “search this list” searches for keyword in any listname that matches the one from "this list".
The code says it should match the mailing list name exactly. However, keyword search is not a database function, it's a function of the full-text indexer. HyperKitty uses Django's Haystack function to implement full-text indexed search, which in turn has several backends available (whoosh, xapian, elastic at least).
Which search backend are you using?
Hi, thank you for your message. I dug into what we have, and found this:
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.whoosh_backend.WhooshEngine',
Marco van Tol