freeswitch/conf/dialplan/default.xml
Brian West e4cace9cb9 some new things
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6521 d0543943-73ff-0310-b7d9-9358b9ac24b2
2007-12-05 18:08:27 +00:00

138 lines
5.8 KiB
XML

<context name="default">
<extension name="global" continue="true">
<condition field="${network_addr}" condition="^$">
<action application="set" data="use_profile=${cond(${is_lan_addr($${local_ip_v4})} == yes ? nat : default)}"/>
<anti-action application="set" data="use_profile=${cond(${is_lan_addr(${network_addr})} == yes ? nat : default)}"/>
</condition>
<!-- This will setup some variables if the user isn't authenticated.
numbering_plan is required for the demo to function properly.
-->
<condition field="${numbering_plan}" condition="^1$">
<action application="set_user" data="default@${domain}"/>
</condition>
<condition>
<action application="info"/>
</condition>
</extension>
<!--
if the calling party is the called party, go to their VM
if the calling party is NOT the called party dial the extension
(1000-1019) for 30 seconds and go to voicemail if the
call fails (continue_on_fail=true), otherwise hang up after a
successful bridge (hangup_after-bridge=true)
-->
<extension name="Local_Extension">
<condition field="destination_number" expression="^(10[01][0-9])$" continue="on-true">
<action application="set" data="dialed_ext=$1"/>
</condition>
<condition field="destination_number" expression="^${caller_id_number}$">
<action application="set" data="voicemail_authorized=${sip_authorized}"/>
<action application="voicemail" data="check default $${domain} ${dialed_ext}"/>
<anti-action application="set" data="call_timeout=30000"/>
<anti-action application="set" data="hangup_after_bridge=true"/>
<anti-action application="set" data="continue_on_fail=true"/>
<anti-action application="bridge" data="USER/${dialed_ext}@$${domain}"/>
<anti-action application="voicemail" data="default $${domain} ${dialed_ext}"/>
</condition>
</extension>
<!-- dial via SIP uri -->
<extension name="SIP_URI">
<condition field="destination_number" expression="^sip:(.*)$">
<action application="bridge" data="sofia/${use_profile}/$1"/>
</condition>
</extension>
<!--
start a dynamic conference with the settings of the
"default" conference profile in conference.conf.xml
-->
<extension name="Conferences">
<condition field="destination_number" expression="^(3\d{3})$">
<action application="conference" data="$1@default"/>
</condition>
</extension>
<!-- dial the freeswitch conference via SIP-->
<extension name="FS_Conf_SIP">
<condition field="destination_number" expression="^888$">
<action application="bridge" data="sofia/${use_profile}/888@conference.freeswitch.org"/>
</condition>
</extension>
<extension name="static-park">
<condition field="destination_number" expression="^8192$">
<action application="fifo" data="default in undef /ram/swimp.raw"/>
</condition>
</extension>
<extension name="unpark">
<condition field="destination_number" expression="^8193$">
<action application="answer"/>
<action application="fifo" data="default out nowait"/>
</condition>
</extension>
<!--
if the number starts with a *393 then strip the *393
and dial the remainder of the number out our "fwd" gateway
-->
<extension name="FWD">
<condition field="destination_number" expression="^\*393([\*\d]+)$">
<!-- Just incase they are using Asterisk let's disable VAD and only use G.711 -->
<action application="export" data="rtp_disable_vad_out=true"/>
<action application="export" data="absolute_codec_string=PCMU@20i,PCMA@20i"/>
<action application="bridge" data="sofia/gateway/fwd/$1"/>
</condition>
</extension>
<!-- a sample IVR -->
<extension name="IVR_Demo">
<condition field="destination_number" expression="5000">
<action application="ivr" data="demo"/>
</condition>
</extension>
<!--
Parking extensions... transferring calls to 5900 will park them in a
queue. dialing 5901 will let you pull them out of the queue.
-->
<extension name="park">
<condition field="destination_number" expression="^5900$">
<action application="fifo" data="default in undef soundfiles/swimp.raw"/>
</condition>
</extension>
<extension name="unpark">
<condition field="destination_number" expression="^5901$">
<action application="answer"/>
<action application="fifo" data="default out nowait"/>
</condition>
</extension>
<extension name="Localized_Dialplan">
<condition field="${numbering_plan}" expression="^[[:alnum:]]+$"/>
<condition field="${default_gateway}" expression="[[:alnum:]]"/>
<condition field="destination_number" expression="^([[:alnum:]]+)$">
<action application="transfer" data="$1 XML ${numbering_plan}-Numbering-Plan"/>
</condition>
</extension>
<!--
this is a "catchall" extension that will match anything that's
unmatched thus far.... uncomment and reloadxml to activate it
-->
<!--
<extension name="catchall">
<condition>
<action application="set" data="effective_caller_id_name=another noob"/>
<action application="bridge" data="sofia/$${domain}/888@conference.freeswitch.org"/>
</condition>
</extension>
-->
</context>