[Freeswitch-users] Nested conditions

Troy Anderson freeswitch at tlainvestments.com
Tue Nov 9 22:27:30 PST 2010


Santiago,

I think something like this will work:

<extension name="header_test_extension">
	<condition field="network_addr" expression="10.1.1.1">
	    <action application="set" data="continue_on_fail=USER_BUSY"/>     
	    <action application="bridge" data="sofia/gateway/profile/${sip_to_user}"/>
	    <action application="transfer' data="header_test_extension-BUSY">
	</condition>
</extension>

<extension name="header_test_extension-BUSY">
    <condition field="${sip_h_X-Header-Name}" expression="Header Value">
        <action application="respond" data="404"/>
        <action application="hangup"/>
    </condition>
</extension>

-Troy

On Nov 8, 2010, at 1:46 PM, Santiago Soares wrote:

> Hello everybody,
> 
> I'd like to handle my calls like this:
> If callee sends a "486 User Busy" AND a certain header is present in the response, Freeswitch would send a "404 Not Found" to the caller.
> The following code would solve my problem:
> 
> <extension name="header_test_extension">
> 
> <condition field="network_addr" expression="10.1.1.1">
>     <action application="set" data="continue_on_fail=USER_BUSY"/>     
>     <action application="bridge" data="sofia/gateway/profile/${sip_to_user}"/>
>     <condition field="${sip_h_X-Header-Name}" expression="Header Value">
>         <action application="respond" data="404"/>
>         <action application="hangup"/>
>     </condition>
> </condition>
> 
> </extension>
> 
> But the thing is that Freeswitch doesn't allow nested conditions.
> 
> Any ideas on how I can handle this?
> 
> Santiago Soares
> Fone: (41) 8488-0537
> _______________________________________________
> FreeSWITCH-users mailing list
> FreeSWITCH-users at lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
> http://www.freeswitch.org




More information about the FreeSWITCH-users mailing list