Add option to remove mailbox data

Fixes #720
This commit is contained in:
Girish Ramakrishnan
2020-07-27 22:26:10 -07:00
parent 3c59a0ff31
commit ed09c06ba4
7 changed files with 51 additions and 7 deletions

29
src/scripts/rmmailbox.sh Executable file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
set -eu -o pipefail
if [[ ${EUID} -ne 0 ]]; then
echo "This script should be run as root." > /dev/stderr
exit 1
fi
if [[ $# -eq 0 ]]; then
echo "No arguments supplied"
exit 1
fi
if [[ "$1" == "--check" ]]; then
echo "OK"
exit 0
fi
mailbox="$1"
if [[ "${BOX_ENV}" == "cloudron" ]]; then
readonly mailbox_dir="${HOME}/boxdata/mail/vmail/$1"
else
readonly mailbox_dir="${HOME}/.cloudron_test/boxdata/mail/vmail/$1"
fi
rm -rf "${mailbox_dir}"