]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
logic bug in public context
authorBrian West <brian@freeswitch.org>
Fri, 10 Oct 2008 19:28:41 +0000 (19:28 +0000)
committerBrian West <brian@freeswitch.org>
Fri, 10 Oct 2008 19:28:41 +0000 (19:28 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9943 d0543943-73ff-0310-b7d9-9358b9ac24b2

conf/dialplan/public.xml

index 3f5115cf8c0c5122079b5bcdf228025dec9366b8..20f14e38dbf4c54099680b92f8e8419f27f501ec 100644 (file)
        the outside of the switch.  
     -->
     <extension name="outside_call" continue="true">
-      <condition break="never">
+      <condition>
        <action application="set" data="outside_call=true"/>
       </condition>
     </extension>
 
     <!-- Try to get domain_name from the sip_req_params variable -->
     <extension name="set_domain" continue="true">
-      <condition field="${domain_name}" expression="^$" break="never"/>
-      <condition field="source" expression="mod_sofia" break="never"/>
-      <condition field="${sip_req_params}" expression="domain_name=([A-Z-a-z0-9.]+)" break="never">
+      <condition field="${domain_name}" expression="^$"/>
+      <condition field="source" expression="mod_sofia"/>
+      <condition field="${sip_req_params}" expression="domain_name=([A-Z-a-z0-9.]+)">
        <!-- We need to export this so the B-Leg will have it after transfer too. -->
        <action application="export" data="domain_name=$1"/>
        <anti-action application="export" data="domain_name=${sip_req_host}"/>