mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
182b71d33f
* chore: Remove `DATABASE` fallback ENV This was introduced without any mention or need, thus removing until a real use-case requires it. * chore: Remove `USER_DATABASE` fallback ENV Likewise, nothing requires this to be customizable. * chore: Consistently use single quote strings
20 lines
472 B
Bash
Executable file
20 lines
472 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# shellcheck source=../scripts/helpers/index.sh
|
|
source /usr/local/bin/helpers/index.sh
|
|
|
|
DATABASE='/tmp/docker-mailserver/postfix-relaymap.cf'
|
|
|
|
DOMAIN="${1}"
|
|
|
|
function __usage { echo 'Usage: excluderelayhost <domain>' ; }
|
|
|
|
[[ -z ${DOMAIN} ]] && { __usage ; _exit_with_error "no domain specified" ; }
|
|
|
|
if grep -qi "^@${DOMAIN}" "${DATABASE}" 2>/dev/null
|
|
then
|
|
sed -i "s/^@${DOMAIN}.*/@${DOMAIN}/" "${DATABASE}"
|
|
else
|
|
echo -e "@${DOMAIN}" >> "${DATABASE}"
|
|
fi
|