bin/vmail-domains-mod.sh

This commit is contained in:
Matthew Saunders Brown 2021-04-27 14:07:47 -07:00
parent 677ac2aa79
commit 5b2f1749ac

View File

@ -10,36 +10,54 @@ source $(dirname $0)/vmail.sh
help() help()
{ {
thisfilename=$(basename -- "$0") thisfilename=$(basename -- "$0")
echo "$thisfilename" echo "Modify an existing domain."
echo "Get domain data from vmail database."
echo "" echo ""
echo "usage: $thisfilename [domain] [OPTIONS]" echo "usage: $thisfilename domain [OPTIONS]"
echo "" echo ""
echo " -e Exact match instead of wildcard search."
echo " -c Output in cvs format."
echo " -h Print this help." echo " -h Print this help."
echo " -s Be more silent - use tabs instead of tables for output, do not display column headers." echo " -l LIMIT Mailbox limit - the maximum number of mailboxes under this domain."
echo "" echo " -q QUOTA Mailbox Quota Default - default quota for new mailboxes under this domain."
echo " Domain can either be a FQDN or a search term." echo " -s STATUS 1 for enabled, 0 for disabled. Default is in db structure and is normally set to 1."
echo " e.g. to search for all .org domains enter .org as the domain."
echo " Use the -e option to disable wildcard search and require exact match of FQDN."
exit exit
} }
# set & check $domain here # check for and verify domain
if [ -n "$1" ]; then
if [ $1 == "-h" ]; then
help
else
domain=$1
shift
if vmail::validate_domain $domain; then
domain_id=`mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE -s -r -N -e "SELECT id from vm_domains WHERE vm_domains.domain='$domain';"`
if [ -z $domain_id ] ; then
echo "ERROR: Email domain $domain does not exist."
exit
fi
else
echo "ERROR: $domain is not a valid domain name."
exit
fi
fi
else
help
fi
# set any options that were passed # set any options that were passed
while getopts ":s:l:q:" opt; do while getopts "hl:q:s:" opt; do
case "${opt}" in case "${opt}" in
s ) h )
status=${OPTARG} help
;; exit;;
l ) l )
limit=${OPTARG} limit=${OPTARG}
;; ;;
q ) q )
quota=${OPTARG} quota=${OPTARG}
;; ;;
s )
status=${OPTARG}
;;
\? ) \? )
echo "Invalid option: $OPTARG" 1>&2 echo "Invalid option: $OPTARG" 1>&2
;; ;;
@ -49,52 +67,58 @@ while getopts ":s:l:q:" opt; do
esac esac
done done
# check if vmail domain dir exits # set update portion of command to empty string
if [ -d /var/vmail/$domain ]; then dbset=""
echo "ERROR: Directory /var/vmail/$domain already exists."
exit 1
fi
# check if domain exists in vmail database # check for quota update
rowcount=`mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE -s -r -N -e "SELECT COUNT(*) from vm_domains WHERE domain='$domain';"` if [ -n "$quota" ]; then
if [ "$rowcount" -eq '0' ] ; then # make quota uppercase in case it is set to NULL
# looks good, build SQL quota=`echo $quota | tr [:lower:] [:upper:]`
cmd="mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE -e \"INSERT INTO vm_domains SET domain='$domain'\"" if [[ "$quota" =~ ^[0-9]+$ ]] || [[ "$quota" == "NULL" ]]; then
if [ ! -z "$status" ] ; then dbset=" mbox_quota_default=\"$quota\""
if [ "$status" == 0 ] || [ "$status" == 1 ]; then
cmd="$cmd, status='$status'"
else
echo "ERROR: status (-s) must be 1 or 0"
exit 1
fi
fi
if [ ! -z "$limit" ] ; then
if [[ "$limit" == "NULL" ]]; then
cmd="$cmd, mbox_limit=NULL"
elif [[ "$limit" =~ ^[0-9]+$ ]]; then
cmd="$cmd, mbox_limit='$limit'"
else
echo "ERROR: limit (-l) must numeric or NULL"
exit 1
fi
fi
if [ ! -z "$quota" ] ; then
if [[ "$quota" == "NULL" ]]; then
cmd="$cmd, mbox_quota_default=NULL"
elif [[ "$quota" =~ ^[0-9]+$ ]]; then
cmd="$cmd, mbox_quota_default='$quota'"
else else
echo "ERROR: quota (-q) must numeric or NULL" echo "ERROR: quota (-q) must numeric or NULL"
exit 1 exit 1
fi fi
fi fi
cmd="$cmd;"
# add domain to vmail database # check for limit update
echo $cmd if [ ! -z "$limit" ]; then
elif [ "$rowcount" -eq '1' ] ; then # make limit uppercase in case it is set to NULL
echo "ERROR: $domain already exists in vmail database." limit=`echo $limit | tr [:lower:] [:upper:]`
exit 1 if [[ "$limit" =~ ^[0-9]+$ ]] || [[ "$limit" == "NULL" ]]; then
if [ ! -z "$dbset" ]; then
dbset="$dbset,"
fi
dbset="$dbset mbox_limit=\"$limit\""
else else
echo "ERROR: System error querying vmail database" echo "ERROR: limit (-l) must numeric or NULL"
exit 1 exit 1
fi fi
fi
# check for status update
if [ ! -z "$status" ]; then
if [ "$status" == 0 ] || [ "$status" == 1 ]; then
if [ ! -z "$dbset" ]; then
dbset="$dbset,"
fi
dbset="$dbset status=\"$status\""
else
echo "ERROR: status (-s) must be 1 or 0"
exit
fi
fi
if [ -n "$dbset" ]; then
# build query
dbcmd="mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE -e 'UPDATE vm_domains SET $dbset WHERE domain.id=\"$domain_id\";'"
# eval $dbcmd
echo $dbcmd
else
echo "ERROR: No values passed for update."
fi