Call with mmcli
mmcli --version
mmcli 1.23.12
I have MM with commit=441c32d981d72bd61af7b7e1e621ac5aa2dbdb74
, because I was told of better GPS handling.
I tried to call from a terminal and I did not see any information about actions in the man page.
mmcli -m 0 --voice-create-call "number=XXX"
Successfully created new call: /org/freedesktop/ModemManager1/Call/1
mmcli -m 0 -o 1 --start
error: no actions specified
And I cannot call using sxmo default method.
It works with gnome-calls.
I think that this is the relevant part in sxmo_modemdial.sh
:
sxmo_log "Attempting to dial: $NUMBER"
if ! CALLID="$(
mmcli -m any --voice-create-call "number=$NUMBER" |
grep -Eo "Call/[0-9]+" |
grep -oE "[0-9]+"
)"; then
sxmo_notify_user.sh --urgency=critical "We failed to initiate call"
return 1
fi