Disable telemetry
CallBro release builds may include PostHog analytics to help improve the product. Telemetry is on by default when a PostHog key is present in the build.
There is no in-app settings toggle today. You disable telemetry at runtime by setting an environment variable when launching the app.
Environment variable
Section titled “Environment variable”Set CALLBRO_DISABLE_TELEMETRY to a truthy value:
1trueyeson
Matching is case-insensitive. If the variable is unset (or set to something else), telemetry stays on when a key is present.
Platform examples
Section titled “Platform examples”CALLBRO_DISABLE_TELEMETRY=1 ./CallBroFor a .desktop launcher, prefix Exec= with env:
Exec=env CALLBRO_DISABLE_TELEMETRY=1 /opt/CallBro/CallBro %UWindows (Command Prompt)
Section titled “Windows (Command Prompt)”set CALLBRO_DISABLE_TELEMETRY=1 && CallBro.exeWindows (PowerShell)
Section titled “Windows (PowerShell)”$env:CALLBRO_DISABLE_TELEMETRY = "1"; .\CallBro.exeEnvironment variables are not passed when you open the app from Finder or use open -a CallBro. Launch the binary directly:
CALLBRO_DISABLE_TELEMETRY=1 /Applications/CallBro.app/Contents/MacOS/CallBroRelated
Section titled “Related”- Website privacy and cookies: Privacy Policy
- Getting set up: Getting started