Advertisement
oquidave

module.conf

Sep 19th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. [modules]
  2. autoload=yes
  3. ;
  4. ; Any modules that need to be loaded before the Asterisk core has been
  5. ; initialized (just after the logger has been initialized) can be loaded
  6. ; using 'preload'. This will frequently be needed if you wish to map all
  7. ; module configuration files into Realtime storage, since the Realtime
  8. ; driver will need to be loaded before the modules using those configuration
  9. ; files are initialized.
  10. ;
  11. ; An example of loading ODBC support would be:
  12. ;preload => res_odbc.so
  13. ;preload => res_config_odbc.so
  14. ;
  15. ; Uncomment the following if you wish to use the Speech Recognition API
  16. ;preload => res_speech.so
  17. ;
  18. ; If you want Asterisk to fail if a module does not load, then use
  19. ; the "require" keyword. Asterisk will exit with a status code of 2
  20. ; if a required module does not load.
  21. ;
  22. ; require = chan_sip.so
  23. ; If you want you can combine with preload
  24. ; preload-require = res_odbc.so
  25. ;
  26. ; If you want, load the GTK console right away.
  27. ;
  28. noload => pbx_gtkconsole.so
  29. ;load => pbx_gtkconsole.so
  30. ;
  31. load => res_musiconhold.so
  32. ;
  33. ; Load one of: chan_oss, alsa, or console (portaudio).
  34. ; By default, load chan_oss only (automatically).
  35. ;
  36. noload => chan_alsa.so
  37. ;noload => chan_oss.so
  38. noload => chan_console.so
  39. ;
  40.  
  41. ; Channel modules
  42. noload => chan_oss.so
  43. noload => chan_mgcp.so
  44. noload => chan_mgcp.so
  45. noload => chan_skinny.so
  46. noload => chan_phone.so
  47. noload => chan_agent.so
  48. noload => chan_unistim.so
  49. noload => chan_alsa.so
  50.  
  51. ; Application modules
  52. noload => app_nbscat.so
  53. noload => app_amd.so
  54. noload => app_minivm.so
  55. noload => app_zapateller.so
  56. noload => app_ices.so
  57. noload => app_sendtext.so
  58. noload => app_speech_utils.so
  59. load => app_mp3.so
  60. noload => app_flash.so
  61. noload => app_getcpeid.so
  62. noload => app_setcallerid.so
  63. noload => app_adsiprog.so
  64. noload => app_forkcdr.so
  65. noload => app_sms.so
  66. noload => app_morsecode.so
  67. noload => app_followme.so
  68. noload => app_url.so
  69. noload => app_alarmreceiver.so
  70. noload => app_disa.so
  71. noload => app_dahdiras.so
  72. noload => app_senddtmf.so
  73. noload => app_sayunixtime.so
  74. noload => app_test.so
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement