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
547 B
Bash
Executable file
31 lines
547 B
Bash
Executable file
#! /bin/bash
|
|
|
|
DATABASE=${DATABASE:-/tmp/docker-mailserver/postfix-virtual.cf}
|
|
|
|
EMAIL="$1"
|
|
RECIPIENT="$2"
|
|
|
|
usage() {
|
|
echo "Usage: delalias <alias@domain> <recipient@other>"
|
|
}
|
|
|
|
errex() {
|
|
echo "$@" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
escape() {
|
|
echo "${1//./\\.}"
|
|
}
|
|
|
|
[ -z "$EMAIL" ] || [ -z "$RECIPIENT" ] && { usage; errex "No email specifed"; }
|
|
[ -s "$DATABASE" ] || exit 0
|
|
|
|
CNT=$(grep "^$EMAIL" $DATABASE | wc -w | awk '{print $1}')
|
|
|
|
if [[ $CNT -eq 2 ]]; then
|
|
sed -i "/^$EMAIL/d" $DATABASE
|
|
else
|
|
sed -i "/^$EMAIL/s/,$RECIPIENT//g" $DATABASE
|
|
fi
|