login | register
Tue 02 of Dec, 2008 [14:09 UTC]

voip-info.org

Discuss [0] History

Asterisk config modules.conf

Created by: oej,Last modification on Sat 22 of Nov, 2003 [10:34 UTC]
Modules.conf configures which modules to load or not to load from the directory
specified in asterisk.conf

Sample config


 ;
 ; Asterisk configuration file
 ;
 ; Module Loader configuration file 
 ;

 [modules]
 autoload=yes
 ;
 ;
 noload => pbx_gtkconsole.so
 ;load => pbx_gtkconsole.so
 noload => pbx_kdeconsole.so
 ;
 ; Intercom application is obsoleted by
 ; chan_oss.  Don't load it.
 ;
 noload => app_intercom.so
 ;
 ; Explicitly load the chan_modem.so early on to be sure
 ; it loads before any of the chan_modem_* 's afte rit
 ;
 load => chan_modem.so
 load => res_musiconhold.so
 ;
 ; Load either OSS or ALSA, not both
 ; By default, load OSS only (automatically) and do not load ALSA
 ;
 noload => chan_alsa.so
 ;noload => chan_oss.so
 ;
 ; Module names listed in "global" section will have symbols globally
 ; exported to modules loaded after them.
 ;
 [global]
 chan_modem.so=yes
 





Comments