mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
570237232c
* delmailuser: + added multiple address deletion + added alias deletion + added maildir deletion (upon confirmation) + introduced optional "assume yes" argument * updated addalias,delalias,delmailuser,updatemailuser and added modified tests * added config check and repair to start-mailserver for old postfix-virtual.cf files
31 lines
616 B
Bash
Executable file
31 lines
616 B
Bash
Executable file
#! /bin/bash
|
|
|
|
DATABASE=${DATABASE:-/tmp/docker-mailserver/postfix-virtual.cf}
|
|
|
|
EMAIL="$1"
|
|
RECIPIENT="$2"
|
|
|
|
usage() {
|
|
echo "Usage: addalias <alias@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
|