-
incoming sms not working though outgoing sms are working ... is there any fix?
-
@babbu I think you will need to provide more information. What phone and carrier would seem the minimum.
But any other details might help too.
-
bin/python3
from gi.repository import GLib
import dbus
import dbus.mainloop.glibdef incoming_message(message, details, path, interface):
print("%s" % (message.encode('utf-8')))for key in details: val = details[key] print(" %s = %s" % (key, val))if name == 'main':
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)bus = dbus.SystemBus() bus.add_signal_receiver(incoming_message, bus_name="org.ofono", signal_name = "ImmediateMessage", path_keyword="path", interface_keyword="interface") bus.add_signal_receiver(incoming_message, bus_name="org.ofono", signal_name = "IncomingMessage", path_keyword="path", interface_keyword="interface") mainloop = GLib.MainLoop() mainloop.run() -
@Giiba bin/python3
from gi.repository import GLib
import dbus
import dbus.mainloop.glibdef incoming_message(message, details, path, interface):
print("%s" % (message.encode('utf-8')))for key in details: val = details[key] print(" %s = %s" % (key, val))if name == 'main':
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)bus = dbus.SystemBus() bus.add_signal_receiver(incoming_message, bus_name="org.ofono", signal_name = "ImmediateMessage", path_keyword="path", interface_keyword="interface") bus.add_signal_receiver(incoming_message, bus_name="org.ofono", signal_name = "IncomingMessage", path_keyword="path", interface_keyword="interface") mainloop = GLib.MainLoop() mainloop.run() -
Assuming your on a Pinephone, modem features are not fully implemented yet so basic connectivity is glitchy.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login