Hi all<br><br>I wanted to be able to send a sms to my freerunner (with another phone) and then &quot;make it&quot; call me back on this another phone.<br>So I installed sms-sentry, and then add this few lines to /usr/bin/sms-sentry in the function &quot;on_incomming_message&quot;, just after the bloc &quot;if contents.startswith(&quot;sentry&quot;)&quot;<br>
<br>[code]<br>if contents.startswith(&quot;my_secret_password&quot;):<br>    print &quot;Calling back the sms sender&quot;<br>    mycommand = &#39;mdbus -s org.freesmartphone.ogsmd /org/freesmartphone/GSM/Device org.freesmartphone.GSM.Call.Initiate u\\&quot;&#39; + sender + &#39;\\&quot; u\\&quot;voice\\&quot;&#39;<br>
    res = os.popen(mycommand)<br>    print &quot;Appel en cours&quot;<br>[/code]<br><br>Then you can try to send you a sms with the content : my_secret_password , and a call should be initiated. <br>I personnaly use it to listent to my baby when I go to some friends and she sleps in another room.<br>
<br>NB : <br>* it is very rough. If someone knows how to handle properly the dbus command to initiate the call with the dbus python bindings, please help :D<br>* You can change the &quot;my_secret_password&quot; into whichever password you like.<br>
* Be aware that you will pay for the call initiated by your freerunner (it calls you back !).<br>* Be carefull to respect the indentation of the python script.<br>* I hope the email won&#39;t break the lines between the [code] <br>
<br>Kimaidou<br>