mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
a144f3811c
* adapted setup.sh to handle email aliases * added needed scripts for alias management * added integration tests
31 lines
617 B
Bash
Executable file
31 lines
617 B
Bash
Executable file
#! /bin/bash
|
|
|
|
DATABASE=${DATABASE:-/tmp/docker-mailserver/postfix-virtual.cf}
|
|
|
|
EMAIL="$1"
|
|
RECIPIENT="$2"
|
|
|
|
usage() {
|
|
echo "Usage: addalias <user@domain> <recipient@other>"
|
|
}
|
|
|
|
errex() {
|
|
echo "$@" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
escape() {
|
|
echo "${1//./\\.}"
|
|
}
|
|
|
|
[ -z "$EMAIL" ] && { usage; errex "no email specified"; }
|
|
|
|
grep -qi "^$(escape $EMAIL)[a-zA-Z@.\ ]*$(escape $RECIPIENT)" $DATABASE 2>/dev/null &&
|
|
errex "Alias \"$EMAIL $RECIPIENT\" already exists"
|
|
|
|
if grep -qi "^$(escape $EMAIL)" $DATABASE 2>/dev/null; then
|
|
sed -i "/$EMAIL/s/$/ $RECIPIENT,/" $DATABASE
|
|
else
|
|
echo "$EMAIL $RECIPIENT," >> $DATABASE
|
|
fi
|