<div dir="ltr">Dear freeswitchers,<div><br></div><div>is there a way to understand if a new session originated from a python handler has been actually answered by the remote user or by the operator voice mail with a message like &quot;the customer you are trying to reach is not available at the moment&quot; ?</div><div><br></div><div>The python code looks something like the following:</div><div><br></div><div><br></div><div><div>def handler(session, args):</div></div><div><div> ## I do various things.... and than</div><div><br></div><div> session_string = str(&quot;sofia/gateway/MY_GW/0039123456789”)</div><div> new_session = freeswitch.Session(session_string)</div><div> if new_session.ready():           </div><div>    # I get here also in case of automatic voice mail message</div><div> else:</div><div>    # I supposed i’d get here in case of automatic “unreachable” messages…</div></div><div><br></div><div><br></div><div>Thanks in advance </div><div>Lorenzo</div></div>