c1c91886b4
This should now be a largely functional deployment of mailman 3. There are still some bits that need testing but we'll use followup changes to force failure and hold nodes. This deployment of mailman3 uses upstream docker container images. We currently hack up uids and gids to accomodate that. We also hack up the settings file and bind mount it over the upstream file in order to use host networking. We override the hyperkitty index type to xapian. All list domains are hosted in a single installation and we use native vhosting to handle that. We'll deploy this to a new server and migrate one mailing list domain at a time. This will allow us to start with lists.opendev.org and test things like dmarc settings before expanding to the remaining lists. A migration script is also included, which has seen extensive testing on held nodes for importing copies of the production data sets. Change-Id: Ic9bf5cfaf0b87c100a6ce003a6645010a7b50358
29 lines
1.0 KiB
Bash
29 lines
1.0 KiB
Bash
#!/bin/bash
|
|
|
|
s=$1
|
|
test -z "$s" && echo 'Specify the list FQDN to migrate!' && exit 1
|
|
echo "*** starting at $(date -Is) ***"
|
|
set -x
|
|
for m in $(
|
|
ls -d /var/lib/mailman/import/$s/lists/* \
|
|
| grep -v /mailman$ \
|
|
| cut -d/ -f8
|
|
); do
|
|
time sudo docker-compose -f /etc/mailman-compose/docker-compose.yaml \
|
|
exec -T -u mailman mailman-core mailman import21 $m@$s \
|
|
/opt/import/$s/lists/$m/config.pck
|
|
time sudo docker-compose -f /etc/mailman-compose/docker-compose.yaml \
|
|
exec -T -u mailman mailman-web python3 manage.py hyperkitty_import -l \
|
|
$m@$s /opt/import/$s/archives/private/$m.mbox/$m.mbox
|
|
time sudo docker-compose -f /etc/mailman-compose/docker-compose.yaml \
|
|
exec -T -u mailman mailman-web python3 manage.py \
|
|
update_index_one_list $m@$s
|
|
done
|
|
sudo mv /var/lib/mailman/import/$s/archives \
|
|
/var/lib/mailman/web-data/mm2archives/$s
|
|
for a in /var/lib/mailman/web-data/mm2archives/$s/public/*; do
|
|
sudo ln -fs ../private/`basename $a` $a
|
|
done
|
|
set +x
|
|
echo "*** completed at $(date -Is) ***"
|