I am testing out conditions in my dialplan, but am unable to get a  
match on caller_id_number, and I wonder why.

I have to numbers registered from my PAP2, with User ID 100, and 200.

If I have this in my dialplan, I thought I should get a match if I  
call any number from any of these two users:

   <extension name="Outbound_ip24">
     <condition field="destination_number" expression="^(.+)$">
                <condition field="caller_id_number" expression="^(100)$">
                        <action application="bridge" data="sofia/$${domain}/ 
140%imyrvold.dyndns.org"/>
                </condition>
                <condition field="caller_id_number" expression="^(140)$">
                        <action application="bridge" data="sofia/$${domain}/ 
100%imyrvold.dyndns.org"/>
                </condition>
     </condition>
   </extension>

But FreeSWITCH can not find a route to either of 100 nor 140.

If I remove the inner conditions, and dial any number, my 140  
telephone will ring:

   <extension name="Outbound_ip24">
     <condition field="destination_number" expression="^(.+)$">
                        <action application="bridge" data="sofia/$${domain}/ 
140%imyrvold.dyndns.org"/>
     </condition>
   </extension>

Why don't I get a match on caller_id_number?

Ivan

_______________________________________________
Freeswitch-users mailing list
[email protected]
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

Reply via email to