modules.conf.sample 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ;
  2. ; Asterisk configuration file
  3. ;
  4. ; Module Loader configuration file
  5. ;
  6. [modules]
  7. autoload=yes
  8. ;
  9. ; Any modules that need to be loaded before the Asterisk core has been
  10. ; initialized (just after the logger has been initialized) can be loaded
  11. ; using 'preload'. This will frequently be needed if you wish to map all
  12. ; module configuration files into Realtime storage, since the Realtime
  13. ; driver will need to be loaded before the modules using those configuration
  14. ; files are initialized.
  15. ;
  16. ; An example of loading ODBC support would be:
  17. ;preload => res_odbc.so
  18. ;preload => res_config_odbc.so
  19. ;
  20. ; Uncomment the following if you wish to use the Speech Recognition API
  21. ;preload => res_speech.so
  22. ;
  23. ; If you want Asterisk to fail if a module does not load, then use
  24. ; the "require" keyword. Asterisk will exit with a status code of 2
  25. ; if a required module does not load.
  26. ;
  27. ; require = chan_sip.so
  28. ; If you want you can combine with preload
  29. ; preload-require = res_odbc.so
  30. ;
  31. ; If you want, load the GTK console right away.
  32. ;
  33. noload => pbx_gtkconsole.so
  34. ;load => pbx_gtkconsole.so
  35. ;
  36. load => res_musiconhold.so
  37. ;
  38. ; Load one of: chan_oss, alsa, or console (portaudio).
  39. ; By default, load chan_oss only (automatically).
  40. ;
  41. noload => chan_alsa.so
  42. ;noload => chan_oss.so
  43. noload => chan_console.so
  44. noload => res_hep.so
  45. noload => res_hep_pjsip.so
  46. noload => res_hep_rtcp.so
  47. ;