MAILTO=""
SHELL="/bin/bash"

# Start one persistent five-minute scheduler. It launches the price runner
# every 10 seconds, matching the proven BNCP2 scheduler pattern.
*/5 * * * * /usr/local/bin/php -q /home/binpvbpa/public_html/v3/cron/v3_bot_runner_loop.php >/dev/null 2>&1
*/10 * * * * /usr/local/bin/php -q /home/binpvbpa/public_html/v3/cron/v3_check_subscriptions.php >/dev/null 2>&1
*/5 * * * * /usr/local/bin/php -q /home/binpvbpa/public_html/v3/cron/v3_collect_stats.php >>/home/binpvbpa/public_html/v3/storage/logs/v3_collect_stats.log 2>&1
# The persistent runner above invokes v3_collect_history.php and the full
# public merchant-market collector every minute while active. Do not add
# separate cron entries for either one.
*/5 * * * * /usr/local/bin/php -q /home/binpvbpa/public_html/v3/cron/v3_telegram_support.php >/dev/null 2>&1
# Daily bounded database cleanup and size-based application-log rotation.
17 3 * * * /usr/local/bin/php -q /home/binpvbpa/public_html/v3/cron/v3_maintenance.php >/dev/null 2>&1
# One-time re-engagement campaign. Install migration 060 and verify --dry-run
# output before enabling this hourly sender.
23 * * * * /usr/local/bin/php -q /home/binpvbpa/public_html/v3/cron/v3_reengagement.php --send >>/home/binpvbpa/public_html/v3/storage/logs/v3_reengagement.log 2>&1
