skinny-patterns.xml 895 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. NOTICE:
  4. This context is used for skinny to match dialed number
  5. The special applications:
  6. - skinny-process tells skinny to process the call (route, set call forwarding, ...)
  7. - skinny-drop tells skinny to drop the call
  8. - skinny-wait tells skinny to wait 'data' seconds for more numbers before drop
  9. -->
  10. <!-- http://wiki.freeswitch.org/wiki/Mod_skinny -->
  11. <include>
  12. <context name="skinny-patterns">
  13. <!--
  14. Wait 10 seconds for another digit by default, if data not specified, uses profile default
  15. -->
  16. <extension name="Default">
  17. <condition>
  18. <action application="skinny-wait" data="10"/>
  19. </condition>
  20. </extension>
  21. <!--
  22. You can place files in the skinny-patterns directory to get included.
  23. -->
  24. <X-PRE-PROCESS cmd="include" data="skinny-patterns/*.xml"/>
  25. </context>
  26. </include>