2018-04-02 08:45:58 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
2022-02-21 10:56:57 +00:00
|
|
|
# shellcheck source=../scripts/helpers/index.sh
|
|
|
|
source /usr/local/bin/helpers/index.sh
|
2018-04-02 08:45:58 +00:00
|
|
|
|
2022-04-20 00:29:28 +00:00
|
|
|
DATABASE='/tmp/docker-mailserver/postfix-relaymap.cf'
|
2018-04-02 08:45:58 +00:00
|
|
|
|
2021-02-23 19:03:01 +00:00
|
|
|
function __usage
|
|
|
|
{
|
2022-05-10 15:50:33 +00:00
|
|
|
printf '%s' "${PURPLE}ADDRELAYHOST${RED}(${YELLOW}8${RED})
|
2021-02-23 19:03:01 +00:00
|
|
|
|
2022-05-10 15:50:33 +00:00
|
|
|
${ORANGE}NAME${RESET}
|
2021-02-23 19:03:01 +00:00
|
|
|
addrelayhost - add an relay host
|
|
|
|
|
2022-05-10 15:50:33 +00:00
|
|
|
${ORANGE}SYNOPSIS${RESET}
|
2021-02-23 19:03:01 +00:00
|
|
|
./setup.sh relay add-domain <DOMAIN> <HOST> [<PORT>]
|
|
|
|
|
2022-05-10 15:50:33 +00:00
|
|
|
${ORANGE}OPTIONS${RESET}
|
|
|
|
${BLUE}Generic Program Information${RESET}
|
2021-02-23 19:03:01 +00:00
|
|
|
help Print the usage information.
|
|
|
|
|
2022-05-10 15:50:33 +00:00
|
|
|
${ORANGE}EXIT STATUS${RESET}
|
2021-02-23 19:03:01 +00:00
|
|
|
Exit status is 0 if command was successful. If wrong arguments are provided
|
|
|
|
or arguments contain errors, the script will exit early with exit status 1.
|
|
|
|
|
|
|
|
"
|
|
|
|
}
|
|
|
|
|
|
|
|
[[ ${1:-} == 'help' ]] && { __usage ; exit 0 ; }
|
|
|
|
|
2020-10-21 16:16:32 +00:00
|
|
|
DOMAIN="${1}"
|
|
|
|
HOST="${2}"
|
|
|
|
PORT="${3}"
|
2018-04-02 08:45:58 +00:00
|
|
|
|
2022-03-21 14:01:07 +00:00
|
|
|
[[ -z ${DOMAIN} ]] && { __usage ; _exit_with_error 'No domain specified' ; }
|
|
|
|
[[ -z ${HOST} ]] && { __usage ; _exit_with_error 'No relay host specified' ; }
|
2020-10-21 16:16:32 +00:00
|
|
|
[[ -z ${PORT} ]] && PORT=25
|
2018-04-02 08:45:58 +00:00
|
|
|
|
2020-10-21 16:16:32 +00:00
|
|
|
if grep -qi "^@${DOMAIN}" "${DATABASE}" 2>/dev/null
|
|
|
|
then
|
2021-02-23 19:03:01 +00:00
|
|
|
sed -i \
|
|
|
|
"s|^@${DOMAIN}.*|@${DOMAIN}\t\t[${HOST}]:${PORT}|" \
|
|
|
|
"${DATABASE}"
|
2018-04-02 08:45:58 +00:00
|
|
|
else
|
2021-02-23 19:03:01 +00:00
|
|
|
echo -e "@${DOMAIN}\t\t[${HOST}]:${PORT}" >>"${DATABASE}"
|
2018-04-02 08:45:58 +00:00
|
|
|
fi
|