#!/bin/bash # # vmail-stack # https://git.stack-source.com/msb/vmail-stack # MIT License Copyright (c) 2021 Matthew Saunders Brown # load include file source $(dirname $0)/vmail.sh help() { thisfilename=$(basename -- "$0") echo "$thisfilename" echo "Add email forward to vmail system" echo "" echo "usage: $thisfilename -e -f [-k <0|1>] [-h]" echo "" echo " -h Print this help." echo " -e Email address to forward." echo " -f Email address to forward to." echo " -k <0|1> Save Local (forward & Keep local copy). 0 = no/off, 1 = yes/on. Default is 0." echo "" echo " Forwarding is for delivering an email to another domain. Use aliases" echo " for directing emails to another address in the same domain." echo " 'email' and 'forward' should both be in full email address format." echo " .e.g to have info@example.org delivered (forwarded) to joe@example.com do:" echo " $thisfilename info@example.org joe@example.com" exit } vmail:getoptions "$@" # check for email if [[ -z $email ]]; then echo "email is required" exit fi # check for forward if [[ -z $forward ]]; then echo "forward is required" exit fi # build query dbcmd="mysql --defaults-extra-file=$MYSQL_CONNECTION_INFO_FILE" dbcmdopts="-s -r -N -e" # get mbox id, which also verfies that email address exists dbquery="SELECT vm_mboxes.id FROM vm_mboxes, vm_domains WHERE vm_mboxes.mbox='$mbox' AND vm_mboxes.domain_id=vm_domains.id AND vm_domains.domain='$domain';" mbox_id=`eval $dbcmd $dbcmdopts \"$dbquery\"` if [ -z $mbox_id ]; then # mbox does not exist, can't create forward echo "ERROR: Address to Forward ($email) does not exist." exit 1 elif [ "$mbox_id" -gt '0' ]; then # verified mbox, check for existing forward dbquery="SELECT id FROM vm_forwards WHERE mbox_id='$mbox_id';" vm_forwards_id=`eval $dbcmd $dbcmdopts \"$dbquery\"` if [ -z $vm_forwards_id ]; then # existing forward does not exist, add it now dbquery="INSERT INTO vm_forwards SET mbox_id='$mbox_id', forward_to='$forward'" if [ ! -z $keep ]; then dbquery="$dbquery, save_local='$keep'" fi eval $dbcmd $dbcmdopts \"$dbquery\;\" else echo "ERROR: Forward for $email already exists. To change either del then add." exit 1 fi else # db query error echo "ERROR: System error querying vmail database." exit 1 fi