Hi,<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div bgcolor="#ffffff" text="#000000">of course, what else, but because i tried it already, you must not
reinvent the wheel again:<br>
<br>
<br>
root@om-gta02 ~/contactx # cat sms_read.py <br>
#!/usr/bin/python<br>
<br>
import sys<br>
import dbus<br>
from dbus.mainloop.glib import DBusGMainLoop<br>
DBusGMainLoop(set_as_default=True)<br>
<br>
bus = dbus.SystemBus()<br>
device = bus.get_object( &#39;org.freesmartphone.ogsmd&#39;,
&#39;/org/freesmartphone/GSM/Device&#39; )<br>
iface = dbus.Interface(device, &#39;org.freesmartphone.GSM.SIM&#39;)<br>
for i in iface.RetrieveMessagebook(&quot;all&quot;):<br>
    print repr(i)<br>
<br>
<br></div></blockquote><div> </div></div>How does one read an SMS from the phone memory?<br><br>Also is there an option to send an acknowledgment SMS as a reply?<br><br>Could you please throw more light on the AckMessage given here:<br>
<a href="http://git.freesmartphone.org/?p=specs.git;a=blob_plain;f=html/org.freesmartphone.GSM.SMS.html;hb=HEAD#SendMessage">http://git.freesmartphone.org/?p=specs.git;a=blob_plain;f=html/org.freesmartphone.GSM.SMS.html;hb=HEAD#SendMessage</a><br>
<br>Ranjan<br>