π¬π§ English Β· π«π· FranΓ§ais
Reconcile your OVH SIP incoming blacklist with Saracroche, the community-driven blocklist of ~16 million French telemarketing numbers.
π Full documentation: raedkit.github.io/ovh-voip-spam-filter
Warning
Use the API (sync), not the CSV.
The OVH Manager's CSV import fails past ~80 entries (empirically confirmed). This project exists to push the same data through the OVH API one prefix at a time, throttled and idempotent. The CSV mode is kept for completeness but is not the recommended path.
docker run --rm \
-e OVH_APPLICATION_KEY=... \
-e OVH_APPLICATION_SECRET=... \
-e OVH_CONSUMER_KEY=... \
-e OVH_BILLING_ACCOUNT=... \
-e OVH_SERVICE_NAME=... \
ghcr.io/raedkit/ovh-voip-spam-filter:latest syncOr via PyPI:
pip install ovh-voip-spam-filter
ovh-voip-spam-filter syncGenerate an OVH token with this pre-filled URL (minimum scopes pre-checked).
Full setup walkthrough: docs/quickstart.
OVH's Manager UI offers a CSV import for the incoming blacklist, but it POSTs each row internally without rate-limiting. The Saracroche list is 643 prefixes β the import returns HTTP 429 after ~80. This tool does the same job correctly: signed API requests, client-side throttle, exponential backoff on 429, auto-adaptation if OVH tightens the quota. One bootstrap run takes ~13 minutes; subsequent runs are idempotent and take seconds.
ββββββββββββββββββββββββββββββ
β Saracroche live API β
β (~643 block-only prefixes)β
βββββββββββββββ¬βββββββββββββββ
β fallback when down
βΌ
ββββββββββββββββββββββββββββββ
β Hard-coded ARCEP fallback β
β (23 prefixes, additive) β
βββββββββββββββ¬βββββββββββββββ
βΌ
ββββββββββββββββββββββββββββββ
β Diff vs current OVH state β
β (GET-first reconciliation)β
βββββββββββββββ¬βββββββββββββββ
βΌ
ββββββββββββββββββββββββββββββ
β Signed OVH API push β
β (throttled, 429-aware) β
ββββββββββββββββββββββββββββββ
- Normal mode (Saracroche reachable) β strict sync: adds missing prefixes, removes the ones Saracroche removed.
- Degraded mode (Saracroche unreachable) β uses the hard-coded ARCEP fallback, additive only, never deletes. Anti-regression guarantee.
Details: reconciliation semantics.
π This project would not exist without Saracroche by Camille Bouvat.
Saracroche is an open-source community blocklist of ~16 million French telemarketing and spam numbers, maintained solo and pro bono since 2020. We consume the french-list-arcep-operators endpoint as our primary source of truth, with no caching on the redistribution side β the freshness you get is whatever Saracroche has right now.
If this tool saved you from a spam call, please support Camille:
- π Liberapay (preferred)
- π³ Stripe / one-shot
- π GitHub Sponsors
Saracroche source:
- π± Apps: iOS Β· Android
- π¦ Code: Codeberg (android) Β· GitHub (legacy)
Full docs at raedkit.github.io/ovh-voip-spam-filter:
- Quickstart β token generation, discover, sync
- Configuration β env vars, CLI flags, Kubernetes
- Docker β image details, multi-arch, CronJob sketch
- PyPI β install + library usage
- Reconciliation β normal vs degraded mode
- API reference
- Roadmap
PRs welcome. See CONTRIBUTING.md for setup and the PR checklist. By participating you agree to the Code of Conduct.
Security issues: see SECURITY.md. Please don't open public issues for credential-handling bugs.
GPL-3.0-or-later β matches Saracroche.