Rename project to Mail-Graveyard

This commit is contained in:
DonVoo 2026-07-05 22:30:32 +02:00
parent ba53f8bb19
commit bb2bcb0576
20 changed files with 55 additions and 55 deletions

View file

@ -1,15 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
set -a
source ./config.env
set +a
BUNDLE="${1:-}"
if [ -z "$BUNDLE" ] || [ ! -f "$BUNDLE" ]; then
echo "Usage: $0 <export.tar.gz>" >&2
exit 2
fi
tar -xzf "$BUNDLE" -C "$APP_DIR"
echo "Imported $BUNDLE into $APP_DIR"