forked from Mirrors/freeswitch
1f8462c4a8
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7242 d0543943-73ff-0310-b7d9-9358b9ac24b2
54 lines
2.3 KiB
XML
54 lines
2.3 KiB
XML
<configuration name="ivr.conf" description="IVR menus">
|
|
<menus>
|
|
<menu name="demo"
|
|
greet-long="soundfiles/ivr/demo/greet-long.wav"
|
|
greet-short="soundfiles/ivr/demo/greet-short.wav"
|
|
invalid-sound="soundfiles/ivr/invalid.wav"
|
|
exit-sound="soundfiles/ivr/exit.wav" timeout ="15"
|
|
max-failures="3">
|
|
<entry action="menu-exit" digits="*"/>
|
|
<entry action="menu-play-sound" digits="1" params="soundfiles/features.wav"/>
|
|
<entry action="menu-sub" digits="2" param="demo2"/>
|
|
<entry action="menu-exec-app" digits="3" param="bridge sofia/$${domain}/888@conference.freeswtich.org"/>
|
|
<entry action="menu-call-transfer" digits="4" param="888"/>
|
|
<entry action="menu-sub" digits="8" param="menu8"/>
|
|
</menu>
|
|
|
|
<menu name="demo2"
|
|
greet-long="soundfiles/ivr/demo2/greet-long.wav"
|
|
greet-short="soundfiles/ivr/demo2/greet-short.wav"
|
|
invalid-sound="soundfiles/ivr/invalid.wav"
|
|
exit-sound="soundfiles/ivr/exit.wav"
|
|
timeout ="15"
|
|
max-failures="3">
|
|
<entry action="menu-back" digits="#"/>
|
|
<entry action="menu-top" digits="*"/>
|
|
</menu>
|
|
|
|
<menu name="demo3"
|
|
greet-long="say:Press 1 to join the conference, Press 2 to join the other conference"
|
|
greet-short="say:Press 1 to join the conference, Press 2 to join the other conference"
|
|
invalid-sound="say:invalid extension"
|
|
exit-sound="say:exit sound" timeout ="15"
|
|
max-failures="3"
|
|
tts-voice="callie" tts-engine="cepstral">
|
|
<entry action="menu-exit" digits="*"/>
|
|
<!-- <entry action="menu-say-text" digits="1" param="You pressed 1"/> -->
|
|
<entry action="menu-call-transfer" digits="1" param="1000"/>
|
|
<entry action="menu-call-transfer" digits="2" param="1001"/>
|
|
</menu>
|
|
|
|
<menu name="menu8"
|
|
greet-long="/soundfiles/ivr/menu8/greet-long.wav"
|
|
greet-short="/soundfiles/ivr/menu8/greet-short.wav"
|
|
invalid-sound="/soundfiles/ivr/menu8/invalid.wav"
|
|
exit-sound="/soundfiles/ivr/menu8/exit.wav"
|
|
timeout ="15"
|
|
max-failures="3">
|
|
<entry action="menu-back" digits="#"/>
|
|
<entry action="menu-play-sound" digits="4" param="soundfiles/4.wav"/>
|
|
<entry action="menu-top" digits="*"/>
|
|
</menu>
|
|
</menus>
|
|
</configuration>
|