mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-08 22:29:56 +00:00
based on configuration templates that use Asterisk dialplan function and variable substitution. It should be possible to create phone profiles and templates that work for the majority of phones provisioned over http. It is currently only intended to provision a single user account per phone. An example profile and set of templates for Polycom phones is provided. NOTE: Polycom firmware is not included, but should be placed in AST_DATA_DIR/phoneprov/configs to match up with the included templates. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@97634 65c4cc65-6c06-0410-ace0-fbb531ad65f3
43 lines
1.2 KiB
Plaintext
43 lines
1.2 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 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
|
|
;
|
|
; res_phoneprov requires func_strings.so to be loaded:
|
|
preload => func_strings.so
|
|
;
|
|
; Uncomment the following if you wish to use the Speech Recognition API
|
|
;preload => res_speech.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
|
|
;
|
|
load => res_musiconhold.so
|
|
;
|
|
; Load one of: chan_oss, alsa, or console (portaudio).
|
|
; By default, load chan_oss only (automatically).
|
|
;
|
|
noload => chan_alsa.so
|
|
;noload => chan_oss.so
|
|
;noload => chan_console.so
|