imsd-ofonod presents imsd on the system bus as an oFono modem — Manager at /, Modem + VoiceCallManager at /imsd, a VoiceCall object per call — which is what GNOME Calls' bundled ofono provider drives; Calls, Phosh and GNOME Shell run unmodified. org.gnome.Calls is not a seam a third party can provide (Calls exports it, nothing feeds it), and Calls' provider plugins link private headers, so org.ofono is the only D-Bus contract available. Pure GDBus translation of net.catcrafts.IMS1, no core, like imsd-dialerd. Packaged as the opt-in imsd-ofono subpackage: the daemon, its unit (Conflicts=ofono.service), the system-bus policy and a gschema override that points Calls at the ofono provider instead of mm (the ModemManager origin would offer the modem's CS voice path, which carries no audio on these phones). The policy grants root send_destination=org.ofono: under dbus-broker a broadcast is checked against the sender's send policy for every name the receiver owns, so without it imsd's call signals never reach the daemon. Verified on a Fairphone 6 with GNOME Calls 50.0: outgoing and incoming calls with audio both ways, answered and hung up through org.gnome.Calls.Call. Known Calls-side gap documented in the README: after the VoiceCallManager interface is withdrawn and re-added, Calls keeps the old origin's CallAdded handler and eventually crashes.
17 lines
838 B
Text
17 lines
838 B
Text
# SPDX-License-Identifier: GPL-3.0-only
|
|
# SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
|
#
|
|
# GNOME Calls autoloads ["mm", "sip"] by default. imsd is reached through the
|
|
# `ofono` provider (imsd-ofonod), so point Calls at that one instead.
|
|
#
|
|
# "mm" is dropped on purpose rather than appended: it would add the real
|
|
# ModemManager modem as a second, competing origin, and on a phone whose voice
|
|
# path is imsd the modem's own CS/voice route carries no audio — a dial that
|
|
# picks that origin fails silently. Re-add it if your device has a working
|
|
# ModemManager voice path and you want both.
|
|
#
|
|
# Install: /usr/share/glib-2.0/schemas/90_imsd-ofono.gschema.override
|
|
# then run glib-compile-schemas /usr/share/glib-2.0/schemas (the distro's
|
|
# package trigger normally does this for you).
|
|
[org.gnome.Calls]
|
|
autoload-plugins=['ofono']
|