iRedMail-scripts/Scripts/add-user-to-alias.sh

41 lines
1.4 KiB
Bash
Executable file

#!/bin/bash
#
# Author: Daulton
# Website: daulton.ca
# Purpose: Add a user to an alias in iRedmail.
# License: 2-clause BSD license
# Reference: https://docs.iredmail.org/sql.create.mail.alias
#
# Note: The alias needs to exist first before you can add users to it.
# Example usage: sh add-user-to-alias.sh alias@mydomain.com jeff@gmail.com
#
# This will print SQL commands on the console directly, you can redirect the
# output to a file for further use like this:
#
# bash add-user-to-alias.sh alias@mydomain.com jeff@gmail.com > output.sql
#
# Import output.sql into SQL database like below:
#
# mysql -uroot -p
# mysql> USE vmail;
# mysql> SOURCE /path/to/output.sql;
#
# psql -U vmailadmin -d vmail
# sql> \i /path/to/output.sql;
# Read input
aliasAccount="$1"
sendToEmail="$2"
if [ "$1" == "-h" ] || [ "$1" == "--h" ] || [ "$1" == "/h" ] || [ $# -ne 2 ]; then
printf "Purpose: Add a user to an alias in iRedmail. \n"
printf "Note: The alias needs to exist first before you can add users to it. \n"
printf "Usage: bash add-user-to-alias.sh alias@mydomain.com jeff@gmail.com \n"
exit 0
fi
aliasAccountDomain=$(echo $aliasAccount | cut -f 2 -d '@')
sendToEmailDomain=$(echo $sendToEmail | cut -f 2 -d '@')
printf "INSERT INTO forwardings (address, forwarding, domain, dest_domain, is_list, active) VALUES ('${aliasAccount}', '${sendToEmail}', '${aliasAccountDomain}', '${sendToEmailDomain}', 0, 1); \n"