macOS blocks atbridge (Gatekeeper)
In short: atbridge is now signed with an Apple Developer ID certificate and
notarized by Apple, so macOS Gatekeeper should let it run without any warning.
If an older, unsigned version is blocked, reinstall with the script
(curl -fsSL https://atbridge.ai/install.sh | sh) or clear the quarantine flag with
one xattr command.
If macOS shows “atbridge can’t be opened”, “atbridge is damaged and can’t be opened”, or “unidentified developer”, you’re almost certainly on an older, unsigned build — that message is macOS Gatekeeper applying its usual caution to an app it can’t recognize.
Why this could still happen
Section titled “Why this could still happen”Every app you download on macOS gets a hidden quarantine flag. Before atbridge was notarized, Gatekeeper played it safe on the first launch and blocked the unsigned binary until you confirmed you trusted it. Current builds are notarized, so Gatekeeper recognizes them — but a binary you downloaded before the signed release still carries the old quarantine flag and no signature, so macOS keeps blocking that specific copy until you replace it or clear the flag.
Fix it (older unsigned build)
Section titled “Fix it (older unsigned build)”Reinstalling pulls the current signed + notarized build, which Gatekeeper accepts, and replaces the old unsigned binary:
curl -fsSL https://atbridge.ai/install.sh | shThat’s the whole fix. It installs to ~/.atbridge/bin/atbridge, puts atbridge
on your PATH, and registers the Thunderbird bridge.
If you’d rather keep the binary you have, clear the quarantine flag and mark it executable:
xattr -dr com.apple.quarantine ~/.atbridge/bin/atbridgechmod +x ~/.atbridge/bin/atbridgeAdjust the path if you saved it elsewhere (e.g. ~/Downloads/atbridge). The
-dr removes the attribute recursively; chmod +x makes it runnable. (Reinstalling
to get the notarized build is still the cleaner fix.)
-
Double-click the atbridge binary. When macOS blocks it, click Cancel (not “Move to Trash”).
-
Open System Settings → Privacy & Security. Scroll to the Security section — you’ll see “atbridge was blocked to protect your Mac.” Click Open Anyway.
-
Confirm once more when prompted. macOS remembers your choice for this binary.
Verify
Section titled “Verify”atbridge --versionA version string means macOS is letting atbridge run. If you’re setting up the Thunderbird bridge, follow it with:
atbridge bridge pingWhere to go next
Section titled “Where to go next”Was this page helpful?
Thanks for the feedback!