Thank you for the answers, but it didn&#39;t work.<br>Isn&#39;t there any way I can get a header value from the called endpoint response?<br>I have a server that returns 486 for many call setup problems, and I&#39;d like that FS send another response to the caller endpoint, based on this &quot;X-Header-Name&quot;.<br>

In other words, I&#39;d like to override the callee response, based on this header value. <br>Is it possible?<br><br clear="all">Santiago Soares<br>Fone: (41) 8488-0537<br>
<br><br><div class="gmail_quote">On Wed, Nov 10, 2010 at 4:27 AM, Troy Anderson <span dir="ltr">&lt;<a href="mailto:freeswitch@tlainvestments.com">freeswitch@tlainvestments.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

Santiago,<br>
<br>
I think something like this will work:<br>
<div class="im"><br>
&lt;extension name=&quot;header_test_extension&quot;&gt;<br>
        &lt;condition field=&quot;network_addr&quot; expression=&quot;10.1.1.1&quot;&gt;<br>
            &lt;action application=&quot;set&quot; data=&quot;continue_on_fail=USER_BUSY&quot;/&gt;<br>
            &lt;action application=&quot;bridge&quot; data=&quot;sofia/gateway/profile/${sip_to_user}&quot;/&gt;<br>
</div>            &lt;action application=&quot;transfer&#39; data=&quot;header_test_extension-BUSY&quot;&gt;<br>
        &lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
&lt;extension name=&quot;header_test_extension-BUSY&quot;&gt;<br>
<div class="im">    &lt;condition field=&quot;${sip_h_X-Header-Name}&quot; expression=&quot;Header Value&quot;&gt;<br>
        &lt;action application=&quot;respond&quot; data=&quot;404&quot;/&gt;<br>
        &lt;action application=&quot;hangup&quot;/&gt;<br>
    &lt;/condition&gt;<br>
</div>&lt;/extension&gt;<br>
<font color="#888888"><br>
-Troy<br>
</font><div><div></div><div class="h5"><br>
On Nov 8, 2010, at 1:46 PM, Santiago Soares wrote:<br>
<br>
&gt; Hello everybody,<br>
&gt;<br>
&gt; I&#39;d like to handle my calls like this:<br>
&gt; If callee sends a &quot;486 User Busy&quot; AND a certain header is present in the response, Freeswitch would send a &quot;404 Not Found&quot; to the caller.<br>
&gt; The following code would solve my problem:<br>
&gt;<br>
&gt; &lt;extension name=&quot;header_test_extension&quot;&gt;<br>
&gt;<br>
&gt; &lt;condition field=&quot;network_addr&quot; expression=&quot;10.1.1.1&quot;&gt;<br>
&gt;     &lt;action application=&quot;set&quot; data=&quot;continue_on_fail=USER_BUSY&quot;/&gt;<br>
&gt;     &lt;action application=&quot;bridge&quot; data=&quot;sofia/gateway/profile/${sip_to_user}&quot;/&gt;<br>
&gt;     &lt;condition field=&quot;${sip_h_X-Header-Name}&quot; expression=&quot;Header Value&quot;&gt;<br>
&gt;         &lt;action application=&quot;respond&quot; data=&quot;404&quot;/&gt;<br>
&gt;         &lt;action application=&quot;hangup&quot;/&gt;<br>
&gt;     &lt;/condition&gt;<br>
&gt; &lt;/condition&gt;<br>
&gt;<br>
&gt; &lt;/extension&gt;<br>
&gt;<br>
&gt; But the thing is that Freeswitch doesn&#39;t allow nested conditions.<br>
&gt;<br>
&gt; Any ideas on how I can handle this?<br>
&gt;<br>
&gt; Santiago Soares<br>
&gt; Fone: (41) 8488-0537<br>
</div></div><div><div></div><div class="h5">&gt; _______________________________________________<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br>
<br>
_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br>