vmail-stack/bin/vmail-forwards-get.sh
2022-08-22 13:34:20 -07:00

58 lines
2.3 KiB
Bash
Executable File

#!/bin/bash
#
# vmail-stack
# https://git.stack-source.com/msb/vmail-stack
# 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)
# load include file
source $(dirname $0)/vmail.sh
help()
{
thisfilename=$(basename -- "$0")
echo "$thisfilename"
echo "Get email forwards data from vmail database."
echo ""
echo "usage: $thisfilename [-e email|-f forward|-f domain] [-c] [-t] [-h]"
echo ""
echo " -h Print this help."
echo " -e <email> Email address to get forwarding for."
echo " -f <forward> Return info for specific forward."
echo " -d <domain> Get all forwards for specified domain."
echo " -c Output in cvs format."
echo " -t Use tabs instead of tables for output, do not display column headers."
echo ""
echo " Search term is optional. If nothing specified all forwards for all email acccounts for all domains will be returned."
echo " Enter email address to get forward info for that email address."
echo " Enter forwarding address (in full email address format) with the -f option to get address(es) that forward to specified address."
echo " Enter domain name to get all forwards for all email addresses under that domain."
exit
}
vmail:getoptions "$@"
# set initial db query data
dbcmd="mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE"
dbcmdopts="-e"
dbquery="SELECT vm_mboxes.mbox, vm_domains.domain, vm_forwards.forward_to, vm_forwards.save_local FROM vm_forwards, vm_mboxes, vm_domains WHERE vm_forwards.mbox_id = vm_mboxes.id AND vm_mboxes.domain_id = vm_domains.id"
# AND vm_forwards.forward_to='$mbox@$domain'"
# build query
if [[ -n $forward ]]; then
# search for specific forward to address
dbquery="$dbquery AND vm_forwards.forward_to='$mbox@$domain'"
elif [[ -n $domain ]]; then
# add specific domain
dbquery="$dbquery AND vm_domains.domain='$domain'"
if [[ -n "$mbox" ]]; then
# search for forward for specific email address
dbquery="$dbquery AND vm_mboxes.mbox='$mbox'"
fi
fi
# set order by
dbquery="$dbquery ORDER BY vm_domains.domain, vm_mboxes.mbox, vm_forwards.forward_to;";
# execute mysql query
eval $dbcmd $dbcmdopts "\"$dbquery\"" $cvs