[Freeswitch-svn] [commit] r13409 - freeswitch/trunk/conf/dialplan

FreeSWITCH SVN silik0n at freeswitch.org
Thu May 21 00:03:15 PDT 2009


Author: silik0n
Date: Thu May 21 02:03:15 2009
New Revision: 13409

Log:
small regex adjustment so we can dial PSTN numbers that happen to have 4000 in them

Modified:
   freeswitch/trunk/conf/dialplan/default.xml

Modified: freeswitch/trunk/conf/dialplan/default.xml
==============================================================================
--- freeswitch/trunk/conf/dialplan/default.xml	(original)
+++ freeswitch/trunk/conf/dialplan/default.xml	Thu May 21 02:03:15 2009
@@ -243,7 +243,7 @@
 
     <!-- voicemail main extension -->
     <extension name="vmain">
-      <condition field="destination_number" expression="^vmain|4000|\*98$">
+      <condition field="destination_number" expression="^vmain$|^4000$|^\*98$">
 	<action application="answer"/>
 	<action application="sleep" data="1000"/>
 	<action application="voicemail" data="check default ${domain_name}"/>  



More information about the Freeswitch-svn mailing list