mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	add warning for when file mapping is found but the engine is not available add warning for trying to map 'logger.conf', since it cannot be reliably mapped git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6034 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| ;
 | |
| ; Asterisk configuration file
 | |
| ;
 | |
| ; Module Loader configuration file
 | |
| ;
 | |
| 
 | |
| [modules]
 | |
| autoload=yes
 | |
| ;
 | |
| ; Any modules that need to be loaded before the Asterisk core has been initialized
 | |
| ; (just after the logger has been initialized) can be loaded using 'preload'. This
 | |
| ; will frequently be needed if you wish to map all module configuration files into
 | |
| ; Realtime storage, since the Realtime driver will need to be loaded before the
 | |
| ; modules using those configuration files are initialized.
 | |
| ;
 | |
| ; An example of loading ODBC support would be:
 | |
| ;preload => res_odbc.so
 | |
| ;preload => res_config_odbc.so
 | |
| ;
 | |
| ; If you want, load the GTK console right away.  
 | |
| ; Don't load the KDE console since
 | |
| ; it's not as sophisticated right now.
 | |
| ;
 | |
| 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
 |