From 67ded2eb387dd571fcea892d526164e5672eac3a Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 23 Jul 2026 16:55:22 +0000 Subject: [PATCH] Use the confirmed Anveo Direct Prime rate as the RATE_PER_MIN default 0.00388/min for standard US-to-US domestic, confirmed against Anveo's own Prime rate card CSV (the route set the outbound trunk's LCR config actually pulls from) rather than the earlier ~0.001 ballpark guess. Defaults to it automatically when the Anveo Direct quick-pick was chosen. --- services/pstn-trunk.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/services/pstn-trunk.sh b/services/pstn-trunk.sh index 3662eb8..a3298d1 100644 --- a/services/pstn-trunk.sh +++ b/services/pstn-trunk.sh @@ -1561,8 +1561,16 @@ install_pstn-trunk() { echo "" log_info "Spend/volume alert settings (used only to estimate cost and flag unusual usage —" log_info "not billing-accurate, just a safety net)." + # Confirmed live (2026-07-23) against Anveo Direct's own "Prime" rate card + # (the route set selected on the outbound trunk's Custom LCR config, + # "Get Routes/Carriers from: All Prime Routes"): standard US-to-US + # domestic is $0.00388/min, billed per-second — that CSV is the actual + # rate an Anveo Direct Prime trunk pays, not an estimate. VoIP.ms's own + # rate is still an unconfirmed ballpark. + local _default_rate="0.01" + [[ "$_provider_choice" == "1" ]] && _default_rate="0.00388" local RATE_PER_MIN="" - prompt_text " Outbound per-minute rate in USD (check your provider's published rate — e.g. VoIP.ms US is ~0.01, Anveo Direct US is ~0.001):" "0.01" RATE_PER_MIN + prompt_text " Outbound per-minute rate in USD (check your provider's published rate — e.g. VoIP.ms US is ~0.01, Anveo Direct US Prime rate is 0.00388 confirmed):" "$_default_rate" RATE_PER_MIN local MONTH_THRESHOLD="" prompt_text " Alert once when estimated spend this month reaches (USD):" "10" MONTH_THRESHOLD local BURST_THRESHOLD=""