[Freeswitch-svn] [commit] r10839 - freeswitch/trunk/conf/dialplan/default
FreeSWITCH SVN
intralanman at freeswitch.org
Tue Dec 16 13:54:17 PST 2008
Author: intralanman
Date: Tue Dec 16 16:54:16 2008
New Revision: 10839
Log:
fix regex
Modified:
freeswitch/trunk/conf/dialplan/default/01_example.com.xml
Modified: freeswitch/trunk/conf/dialplan/default/01_example.com.xml
==============================================================================
--- freeswitch/trunk/conf/dialplan/default/01_example.com.xml (original)
+++ freeswitch/trunk/conf/dialplan/default/01_example.com.xml Tue Dec 16 16:54:16 2008
@@ -20,7 +20,7 @@
<extension name="international.example.com">
<condition field="${toll_allow}" expression="international"/>
- <condition field="destination_number" expression="^(011\d{10+})$">
+ <condition field="destination_number" expression="^(011\d+)$">
<action application="set" data="effective_caller_id_number=${outbound_caller_id_number}"/>
<action application="set" data="effective_caller_id_name=${outbound_caller_id_name}"/>
<action application="bridge" data="sofia/gateway/${default_gateway}/$1"/>
More information about the Freeswitch-svn
mailing list