new_demo_ivr.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <include>
  2. <!-- new demo IVR, Main Menu -->
  3. <menu name="new_demo_ivr"
  4. greet-long="phrase:new_demo_ivr_main_menu"
  5. greet-short="phrase:new_demo_ivr_main_menu_short"
  6. invalid-sound="ivr/ivr-that_was_an_invalid_entry.wav"
  7. exit-sound="voicemail/vm-goodbye.wav"
  8. confirm-macro=""
  9. confirm-key=""
  10. tts-engine="flite"
  11. tts-voice="rms"
  12. confirm-attempts="3"
  13. timeout="10000"
  14. inter-digit-timeout="2000"
  15. max-failures="3"
  16. max-timeouts="3"
  17. digit-len="4">
  18. <entry action="menu-sub" digits="1" param="freeswitch_ivr_submenu"/> <!-- FreeSWITCH sub menu -->
  19. <entry action="menu-sub" digits="2" param="freeswitch_solutions_ivr_submenu"/> <!-- FreeSWITCH Solutions sub menu -->
  20. <entry action="menu-sub" digits="3" param="cluecon_ivr_submenu"/> <!-- ClueCon sub menu -->
  21. <entry action="menu-exec-app" digits="4" param="5000 XML default"/> <!-- original demo IVR -->
  22. <entry action="menu-top" digits="9"/> <!-- Repeat this menu -->
  23. </menu>
  24. <!-- FreeSWITCH IVR Sub Menu -->
  25. <menu name="freeswitch_ivr_submenu"
  26. greet-long="phrase:learn_about_freeswitch_sub_menu"
  27. greet-short="phrase:learn_about_freeswitch_sub_menu"
  28. invalid-sound="ivr/ivr-that_was_an_invalid_entry.wav"
  29. exit-sound="voicemail/vm-goodbye.wav"
  30. timeout="15000"
  31. max-failures="3"
  32. max-timeouts="3">
  33. <entry action="menu-sub" digits="9" param="freeswitch_ivr_submenu"/>
  34. <entry action="menu-top" digits="*"/>
  35. </menu>
  36. <!-- FreeSWITCH Solutions IVR Sub Menu -->
  37. <menu name="freeswitch_solutions_ivr_submenu"
  38. greet-long="phrase:learn_about_freeswitch_solutions_sub_menu"
  39. greet-short="phrase:learn_about_freeswitch_solutions_sub_menu"
  40. invalid-sound="ivr/ivr-that_was_an_invalid_entry.wav"
  41. exit-sound="voicemail/vm-goodbye.wav"
  42. timeout="15000"
  43. max-failures="3"
  44. max-timeouts="3">
  45. <entry action="menu-sub" digits="9" param="freeswitch_solutions_ivr_submenu"/>
  46. <entry action="menu-top" digits="*"/>
  47. </menu>
  48. <!-- ClueCon IVR Sub Menu -->
  49. <menu name="cluecon_ivr_submenu"
  50. greet-long="phrase:learn_about_cluecon_sub_menu"
  51. greet-short="phrase:learn_about_cluecon_sub_menu"
  52. invalid-sound="ivr/ivr-that_was_an_invalid_entry.wav"
  53. exit-sound="voicemail/vm-goodbye.wav"
  54. timeout="15000"
  55. max-failures="3"
  56. max-timeouts="3">
  57. <entry action="menu-sub" digits="9" param="cluecon_ivr_submenu"/>
  58. <entry action="menu-top" digits="*"/>
  59. </menu>
  60. </include>