I am importing old archives mbox files from Mailman2. I have fixed the archive mail address to reflect the address of the destination import.
These are the steps:
1. sed 's|oldlist@oldexample\.org|testlist@example\.org|g' mbox > mbox.testlist
2. /opt/mailman/mm/bin/django-admin hyperkitty_import --since 01/01/1990 -l testlist@example.org mbox.testlist
The output of the last command is:
Computing thread structure
Synchronizing properties with Mailman
Warming up cache
The full-text search index is not updated for this list. It will
not be updated by the 'minutely' incremental update job.
To update the index for this list, run the 'manage.py
update_index_one_list testlist@example.org' command.
The result is that the e-mail's are imported but not indexed.
To finalize this process I am seeking manage.py that will execute the update index command.
I am on a Debian 10 with Mailman3 in /opt.
locate manage.py
returns:
/opt/mailman/mm/venv/lib/python3.7/site-packages/django/conf/project_template/manage.py-tpl /opt/mailman/mm/venv/lib/python3.7/site-packages/example_project/manage.py /opt/mailman/mm/venv/lib/python3.7/site-packages/falcon/bench/dj/manage.py
None of these python files can execute the needed command.
What can I do to get the newly imported posts indexed?
Regards,
Frank