vmail-stack/bin/vmail-domains-del.sh

62 lines
1.8 KiB
Bash
Raw Normal View History

2021-02-10 16:16:23 -08:00
#!/bin/bash
#
# vmail-stack
# https://git.stack-source.com/msb/vmail-stack
# MIT License Copyright (c) 2021 Matthew Saunders Brown
2021-04-02 12:02:50 -07:00
# load include file
source $(dirname $0)/vmail.sh
2021-02-10 16:16:23 -08:00
help()
{
thisfilename=$(basename -- "$0")
echo "$thisfilename"
echo "Delete domain and all associated email accounts from the vmail system."
echo ""
2021-10-15 15:17:29 -07:00
echo "usage: $thisfilename -d <domain> [-h]"
2021-02-10 16:16:23 -08:00
echo ""
echo " -h Print this help."
2021-10-15 15:17:29 -07:00
echo " -d Domain to be removed from the vmail system."
2021-02-10 16:16:23 -08:00
exit
}
2021-10-15 15:17:29 -07:00
vmail:getoptions "$@"
2021-02-10 16:16:23 -08:00
2021-10-15 15:17:29 -07:00
# check for domain
if [[ -z $domain ]]; then
echo "domain name is required"
exit
fi
2021-02-10 16:16:23 -08:00
# build query
dbcmd="mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE"
dbcmdopts="-s -r -N -e"
2021-02-10 16:16:23 -08:00
# check if domain exists in vmail database
dbquery="SELECT COUNT(*) FROM vm_domains WHERE domain='$domain';"
rowcount=`$dbcmd $dbcmdopts "$dbquery"`
if [ "$rowcount" -eq '1' ] ; then
# domain exists, delete from all vmail tables
2021-10-15 15:17:29 -07:00
# single delete should be sufficient for vm_* tables due to ON DELETE CASCADE foreign key references
dbquery="DELETE FROM vm_domains WHERE domain='$domain';"
2021-02-19 17:03:56 -08:00
eval $dbcmd $dbcmdopts "\"$dbquery\""
dbquery="DELETE FROM sa_userpref WHERE username LIKE '%@$domain';"
eval $dbcmd $dbcmdopts "\"$dbquery\""
dbquery="DELETE FROM vm_greylisting WHERE recipient LIKE '%@$domain';"
eval $dbcmd $dbcmdopts "\"$dbquery\""
# this should be sufficient for rc due to ON DELETE CASCADE foreign key references
2021-02-19 17:03:56 -08:00
dbquery="DELETE FROM rc_users WHERE username LIKE '%@$domain';"
eval $dbcmd $dbcmdopts "\"$dbquery\""
elif [ "$rowcount" -eq '0' ] ; then
echo "ERROR: $domain does not exist in vmail database."
2021-02-10 16:16:23 -08:00
exit 1
else
echo "ERROR: System error querying vmail database"
exit 1
fi
if [ -d "$VMAIL_DIR/$domain" ] ; then
2021-02-19 17:03:56 -08:00
/usr/bin/rm -r $VMAIL_DIR/$domain
2021-02-10 16:16:23 -08:00
fi