2016-12-30 19:06:44 +00:00
#! /bin/bash
2016-06-14 11:16:11 +00:00
2021-02-14 20:19:58 +00:00
# shellcheck disable=SC2094
2020-10-21 16:16:32 +00:00
# ? This is done to ignore the message "Make sure not to read and write
# ? the same file in the same pipeline", which is a result of ${DATABASE}
# ? being used below. (This disables the message file-wide.)
2021-01-16 09:16:05 +00:00
# shellcheck source=../scripts/helper-functions.sh
. /usr/local/bin/helper-functions.sh
2020-10-21 16:16:32 +00:00
2016-12-30 19:06:44 +00:00
DATABASE=${DATABASE:-/tmp/docker-mailserver/postfix-accounts.cf}
2018-03-14 19:00:38 +00:00
ALIAS_DATABASE="/tmp/docker-mailserver/postfix-virtual.cf"
2020-04-24 12:55:32 +00:00
QUOTA_DATABASE="/tmp/docker-mailserver/dovecot-quotas.cf"
2021-02-14 20:19:58 +00:00
MAILDEL=false
2016-12-30 19:06:44 +00:00
2020-10-21 16:16:32 +00:00
function usage
{
2021-02-14 20:19:58 +00:00
echo "Usage: delmailuser [-y] <user@domain> [<user2@anotherdomain>]"
2016-12-30 19:06:44 +00:00
}
2021-02-14 20:19:58 +00:00
while getopts ":yY" OPT
2020-10-21 16:16:32 +00:00
do
case ${OPT} in
2021-02-14 20:19:58 +00:00
y | Y )
MAILDEL=true
2020-10-21 16:16:32 +00:00
;;
2021-02-14 20:19:58 +00:00
* )
2020-10-21 16:16:32 +00:00
usage
2021-02-14 20:19:58 +00:00
exit 1
2020-10-21 16:16:32 +00:00
;;
2018-03-14 19:00:38 +00:00
esac
done
shift $((OPTIND-1))
2020-10-21 16:16:32 +00:00
[[ -z ${*} ]] && { usage ; errex "No user specifed" ; }
[[ -s ${DATABASE} ]] || exit 0
2016-12-30 19:06:44 +00:00
2021-02-14 20:19:58 +00:00
if ! ${MAILDEL}
then
read -r -p "Do you want to delete the mailbox as well (removing all mails) ? [Y/n] " MAILDEL_CHOSEN
[[ ${MAILDEL_CHOSEN} =~ (y|Y| ) ]] && MAILDEL=true
fi
2019-08-01 17:39:25 +00:00
(
flock -e 200
2020-10-21 16:16:32 +00:00
for USER in "${@}"
do
2019-08-01 17:39:25 +00:00
# very simple plausibility check
2021-02-14 20:19:58 +00:00
[[ ${USER} != *'@'*'.'* ]] && errex "No valid address: ${USER}"
2020-10-21 16:16:32 +00:00
declare -a MAILARR
MAILARR[0]="${USER%@*}"
MAILARR[1]="${USER#*@}"
2021-02-14 20:19:58 +00:00
# ${USER} must not contain /s and other syntactic characters
2020-10-21 16:16:32 +00:00
USER=$(escape "${USER}")
2021-02-14 20:19:58 +00:00
if [[ -f ${DATABASE} ]]
2020-10-21 16:16:32 +00:00
then
2021-02-14 20:19:58 +00:00
if ! sed -i "/^${USER}|/d" "${DATABASE}"
then
errex "${USER} couldn't be deleted in ${DATABASE}. ${?}"
fi
2020-10-21 16:16:32 +00:00
fi
2021-02-14 20:19:58 +00:00
if [[ -f ${ALIAS_DATABASE} ]]
2020-10-21 16:16:32 +00:00
then
2021-02-14 20:19:58 +00:00
# delete all aliases where the user is the only recipient( " ${USER$}" )
# delete user only for all aliases that deliver to multiple recipients ( ",${USER}" "${USER,}" )
if sed -i \
-e "/ ${USER}$/d" -e "s/,${USER}//g" -e "s/${USER},//g" \
"${ALIAS_DATABASE}"
then
echo "${USER} and potential aliases deleted."
else
errex "Aliases for ${USER} couldn't be deleted in ${ALIAS_DATABASE}."
fi
2020-10-21 16:16:32 +00:00
fi
2020-04-24 12:55:32 +00:00
# remove quota directives
2020-10-21 16:16:32 +00:00
if [[ -f ${QUOTA_DATABASE} ]]
then
2021-02-14 20:19:58 +00:00
if ! sed -i -e "/^${USER}:.*$/d" "${QUOTA_DATABASE}"
then
errex "Quota for ${USER} couldn't be deleted in ${QUOTA_DATABASE}."
fi
2020-04-24 12:55:32 +00:00
fi
2021-02-14 20:19:58 +00:00
if ! ${MAILDEL}
2020-10-21 16:16:32 +00:00
then
2021-02-14 20:19:58 +00:00
echo "Leaving the mailbox untouched. If you want to delete it at a later point use 'sudo docker exec mail rm -R /var/mail/${MAILARR[1]}/${MAILARR[0]}'"
exit 0
2019-08-01 17:39:25 +00:00
fi
2020-10-21 16:16:32 +00:00
2021-02-14 20:19:58 +00:00
if [[ -d "/var/mail/${MAILARR[1]}/${MAILARR[0]}" ]]
2020-10-21 16:16:32 +00:00
then
2021-02-14 20:19:58 +00:00
if rm -r -f "/var/mail/${MAILARR[1]}/${MAILARR[0]}"
then
echo "Mailbox deleted."
else
errex "Mailbox couldn't be deleted."
fi
else
errex "Mailbox directory '/var/mail/${MAILARR[1]}/${MAILARR[0]}' does not exist."
2020-10-21 16:16:32 +00:00
fi
2019-08-01 17:39:25 +00:00
done
2020-10-21 16:16:32 +00:00
) 200< "${DATABASE}"