modules.conf.sample 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. ; If you want, load the GTK console right away.
  21. ; Don't load the KDE console since
  22. ; it's not as sophisticated right now.
  23. ;
  24. noload => pbx_gtkconsole.so
  25. ;load => pbx_gtkconsole.so
  26. noload => pbx_kdeconsole.so
  27. ;
  28. ; Intercom application is obsoleted by
  29. ; chan_oss. Don't load it.
  30. ;
  31. noload => app_intercom.so
  32. ;
  33. ; The 'modem' channel driver and its subdrivers are
  34. ; obsolete, don't load them.
  35. ;
  36. noload => chan_modem.so
  37. noload => chan_modem_aopen.so
  38. noload => chan_modem_bestdata.so
  39. noload => chan_modem_i4l.so
  40. ;
  41. load => res_musiconhold.so
  42. ;
  43. ; Load either OSS or ALSA, not both
  44. ; By default, load OSS only (automatically) and do not load ALSA
  45. ;
  46. noload => chan_alsa.so
  47. ;noload => chan_oss.so
  48. ;
  49. ; Module names listed in "global" section will have symbols globally
  50. ; exported to modules loaded after them.
  51. ;
  52. [global]