iRedMail-scripts/Scripts/disable-domain.sh

34 lines
839 B
Bash
Executable file

#!/bin/bash
#
# Author: Daulton
# Website: daulton.ca
# Purpose: Disables a domain in iRedMail.
# License: 2-clause BSD license
#
# bash disable-domain.sh example.com
#
# This will print SQL commands on the console directly, you can redirect the
# output to a file for further use like this:
#
# bash disable-domain.sh example.com > output.sql
#
# Import output.sql into SQL database like below:
#
# mysql -uroot -p
# mysql> USE vmail;
# mysql> SOURCE /path/to/output.sql;
#
# psql -U vmailadmin -d vmail
# sql> \i /path/to/output.sql;
# Read input
domain="$1"
if [ "$1" == "-h" ] || [ "$1" == "--h" ] || [ "$1" == "/h" ] || [ $# -ne 1 ]; then
printf "Purpose: Disables a domain in iRedMail. \n"
printf "Usage: bash disable-domain.sh example.com \n"
exit 0
fi
printf "UPDATE domain SET active = '0' WHERE domain = '$domain';\n"