#! /bin/bash set -e # Check if the master lock exists for the mailman. # It means that that either some other mailman process is running or # the last time mailman did not exit clean. if [[ -e /opt/mailman/var/locks/master.lck ]]; then echo "The mailman's master lock file still exists at /opt/mailman/core/var/locks/master.lck" echo "Please remove the lock file before trying to run this container again." exit 1 fi function wait_for_postgres () { # Check if the postgres database is up and accepting connections before # moving forward. # TODO: Use python's psycopg2 module to do this in python instead of # installing postgres-client in the image. until psql $DATABASE_URL -c '\l'; do >&2 echo "Postgres is unavailable - sleeping" sleep 1 done >&2 echo "Postgres is up - continuing" } # Empty the config file. echo "# This file is autogenerated at container startup." > /etc/mailman.cfg # Check if $MM_HOSTNAME is set, if not, set it to the value returned by # `hostname -i` command to set it to whatever IP address is assigned to the # container. if [[ ! -v MM_HOSTNAME ]]; then export MM_HOSTNAME=`hostname -i` fi if [[ ! -v SMTP_HOST ]]; then export SMTP_HOST='172.19.199.1' fi if [[ ! -v SMTP_PORT ]]; then export SMTP_PORT=25 fi function setup_database () { if [[ ! -v DATABASE_URL ]] then echo "Environemnt variable DATABASE_URL should be defined..." exit 1 fi cat >> /etc/mailman.cfg <> /etc/mailman.cfg < /etc/postfix-mailman.cfg <> /etc/mailman.cfg fi if [[ ! -v HYPERKITTY_API_KEY ]]; then echo "HYPERKITTY_API_KEY not defined, please set this environment variable..." echo "exiting..." exit 1 fi if [[ ! -v HYPERKITTY_URL ]]; then echo "HYPERKITTY_URL not set, using the default value of http://mailman-web:8000/hyperkitty" export HYPERKITTY_URL="http://mailman-web:8000/hyperkitty/" fi # Generate a basic mailman-hyperkitty.cfg. cat > /etc/mailman-hyperkitty.cfg <