#!/bin/bash # # vmail-stack # https://git.stack-source.com/msb/vmail-stack # Copyright (c) 2022 Matthew Saunders Brown # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # load include file source $(dirname $0)/vmail.sh help() { thisfilename=$(basename -- "$0") echo "$thisfilename" echo "Disable webmail for given domain" echo "" echo "usage: $thisfilename -d [-h]" echo "" echo " -h Print this help." echo " -d Domain to disable webmail for." } vmail:getoptions "$@" # check for domain if [[ -z $domain ]]; then echo "ERROR: domain name is required" exit 1 fi # disable webmail vhost & restart apache if [ -h "/etc/apache2/sites-enabled/mail.$domain.conf" ]; then /usr/sbin/a2dissite --quiet mail.$domain fi if [ -f "/etc/apache2/sites-available/mail.$domain.conf" ]; then rm /etc/apache2/sites-available/mail.$domain.conf fi