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

111 lines
3.0 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
2022-08-22 13:34:20 -07:00
# Copyright (c) 2022 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
2021-02-10 16:16:23 -08:00
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")
2021-04-27 14:07:47 -07:00
echo "Modify an existing domain."
2021-02-10 16:16:23 -08:00
echo ""
2021-12-30 16:50:23 -08:00
echo "usage: $thisfilename -d <domain> [OPTIONS]"
2021-02-10 16:16:23 -08:00
echo ""
2021-12-30 16:50:23 -08:00
echo " -h Print this help."
echo " -d Domain to be modified."
echo " -l <limit> Mailbox limit - the maximum number of mailboxes under this domain."
echo " -q <quota> Mailbox Quota Default in GB - default quota for new mailboxes under this domain."
echo " -r <ratelimit> Default mailbox sending rate limit per hour, multiplied by 10 for limit per day."
echo " -s <0|1> Status. 1 for enabled, 0 for disabled. Default is in db structure and is normally set to 1."
2021-02-10 16:16:23 -08:00
exit
}
2021-10-15 15:17:29 -07:00
vmail:getoptions "$@"
# check for domain
if [[ -n $domain ]]; then
2022-11-29 16:33:15 -08:00
domain_id=`mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE -s -r -N -e "SELECT id from vm_domains WHERE domain='$domain';"`
2021-10-15 15:17:29 -07:00
if [ -z $domain_id ] ; then
echo "ERROR: Email domain $domain does not exist."
exit
2021-04-27 14:07:47 -07:00
fi
else
2021-10-15 15:17:29 -07:00
echo "domain name is required"
2022-05-10 15:50:38 -07:00
exit 1
2021-04-27 14:07:47 -07:00
fi
2021-04-27 14:07:47 -07:00
# set update portion of command to empty string
dbset=""
2021-02-10 16:16:23 -08:00
2021-04-27 14:07:47 -07:00
# check for quota update
2021-10-15 15:17:29 -07:00
if [[ -n $quota ]]; then
2021-04-27 14:07:47 -07:00
# make quota uppercase in case it is set to NULL
quota=`echo $quota | tr [:lower:] [:upper:]`
if [[ "$quota" =~ ^[0-9]+$ ]] || [[ "$quota" == "NULL" ]]; then
2022-05-10 16:24:40 -07:00
dbset="mbox_quota_default=$quota"
2021-04-27 14:07:47 -07:00
else
echo "ERROR: quota (-q) must numeric or NULL"
exit 1
2021-02-10 16:16:23 -08:00
fi
2021-04-27 14:07:47 -07:00
fi
2021-12-30 16:50:23 -08:00
# check for ratelimit update
if [[ -n $ratelimit ]]; then
# make ratelimit uppercase in case it is set to NULL
ratelimit=`echo $ratelimit | tr [:lower:] [:upper:]`
if [[ "$ratelimit" =~ ^[0-9]+$ ]] || [[ "$ratelimit" == "NULL" ]]; then
2022-05-10 16:24:40 -07:00
if [ ! -z "$dbset" ]; then
dbset="$dbset,"
fi
dbset="$dbset mbox_ratelimit_default=$ratelimit"
2021-12-30 16:50:23 -08:00
else
echo "ERROR: ratelimit (-r) must numeric or NULL"
exit 1
fi
fi
2021-04-27 14:07:47 -07:00
# check for limit update
2021-10-15 15:17:29 -07:00
if [[ -n $limit ]]; then
2021-04-27 14:07:47 -07:00
# make limit uppercase in case it is set to NULL
limit=`echo $limit | tr [:lower:] [:upper:]`
if [[ "$limit" =~ ^[0-9]+$ ]] || [[ "$limit" == "NULL" ]]; then
if [ ! -z "$dbset" ]; then
dbset="$dbset,"
2021-02-10 16:16:23 -08:00
fi
2021-10-15 16:01:53 -07:00
dbset="$dbset mbox_limit=$limit"
2021-04-27 14:07:47 -07:00
else
echo "ERROR: limit (-l) must numeric or NULL"
exit 1
2021-02-10 16:16:23 -08:00
fi
2021-04-27 14:07:47 -07:00
fi
# check for status update
2021-10-15 15:17:29 -07:00
if [[ -n $status ]]; then
2021-04-27 14:07:47 -07:00
if [ "$status" == 0 ] || [ "$status" == 1 ]; then
if [ ! -z "$dbset" ]; then
dbset="$dbset,"
2021-02-10 16:16:23 -08:00
fi
2021-04-27 14:07:47 -07:00
dbset="$dbset status=\"$status\""
else
echo "ERROR: status (-s) must be 1 or 0"
2022-05-10 15:50:38 -07:00
exit 1
2021-02-10 16:16:23 -08:00
fi
2021-04-27 14:07:47 -07:00
fi
if [ -n "$dbset" ]; then
# build query
2021-10-15 15:21:51 -07:00
dbcmd="mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE -e 'UPDATE vm_domains SET $dbset WHERE id=\"$domain_id\";'"
eval $dbcmd
2021-04-27 14:07:47 -07:00
2021-02-10 16:16:23 -08:00
else
2021-04-27 14:07:47 -07:00
echo "ERROR: No values passed for update."
2022-05-10 15:50:38 -07:00
exit 1
2021-04-27 14:07:47 -07:00
2021-02-10 16:16:23 -08:00
fi