Advertisement
oquidave

new modules.conf

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