#!/bin/sh
if [ "$(whoami)" != "mailman" ]; then
    echo "This command must be run under mailman user."
    exit 1
fi
/usr/lib/mailman3/mailman $@
