Sends doula coverage claims via Telnyx fax API every hour, logs every attempt, and generates a printable HTML report for HR. Includes both a Linux CLI with cron scheduling and a Windows GUI (tkinter) that can be packaged as a portable exe via PyInstaller. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
331 B
Bash
Executable file
9 lines
331 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "Removing AutoFax cron jobs..."
|
|
crontab -l 2>/dev/null | grep -v "autofax" | crontab - 2>/dev/null || true
|
|
echo "Done. Cron jobs removed."
|
|
echo ""
|
|
echo "Reports are preserved in: $(cd "$(dirname "$0")" && pwd)/reports/"
|
|
echo "To fully remove: rm -rf $(cd "$(dirname "$0")" && pwd)/venv"
|