mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	Removes some leftover build and config references to modules that have since been removed from Asterisk. ASTERISK-29935 #close Change-Id: Iaefc73a23f4b2de3c6c14d928050135b6d0ef6af
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ;
 | |
| ; 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 initialization) can be loaded
 | |
| ; using 'preload'.  'preload' forces a module and the modules it
 | |
| ; is known to depend upon to be loaded earlier than they normally get
 | |
| ; loaded.
 | |
| ;
 | |
| ; NOTE: There is no good reason left to use 'preload' anymore.  It was
 | |
| ; historically required to preload realtime driver modules so you could
 | |
| ; map Asterisk core configuration files to Realtime storage.
 | |
| ; This is no longer needed.
 | |
| ;
 | |
| ;preload = your_special_module.so
 | |
| ;
 | |
| ; If you want Asterisk to fail if a module does not load, then use
 | |
| ; the "require" keyword. Asterisk will exit with a status code of 2
 | |
| ; if a required module does not load.
 | |
| ;
 | |
| ;require = chan_pjsip.so
 | |
| ;
 | |
| ; If you want you can combine with preload
 | |
| ; preload-require = your_special_module.so
 | |
| ;
 | |
| ;load = res_musiconhold.so
 | |
| ;
 | |
| ; Load one of: alsa, or console (portaudio).
 | |
| ; By default, load chan_console only (automatically).
 | |
| ;
 | |
| noload = chan_alsa.so
 | |
| ;noload = chan_console.so
 | |
| ;
 | |
| ; Do not load res_hep and kin unless you are using HEP monitoring
 | |
| ; <http://sipcapture.org> in your network.
 | |
| ;
 | |
| noload = res_hep.so
 | |
| noload = res_hep_pjsip.so
 | |
| noload = res_hep_rtcp.so
 | |
| ;
 | |
| ; Do not load chan_sip by default, it may conflict with res_pjsip.
 | |
| noload = chan_sip.so
 | |
| ;
 | |
| ; Load one of the voicemail modules as they are mutually exclusive.
 | |
| ; By default, load app_voicemail only (automatically).
 | |
| ;
 | |
| ;noload = app_voicemail.so
 | |
| noload = app_voicemail_imap.so
 | |
| noload = app_voicemail_odbc.so
 |