Advertisement
Guest User

Untitled

a guest
Sep 11th, 2014
426
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. ;
  2. ; Asterisk Module Loader configuration file
  3. ;
  4. ;
  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. ; As FreePBX is using Local as the channel for queue members we need to make sure
  21. ; that pbx_config.so and chan_local.so are preloaded. If not, queue members
  22. ; will be marked as invalid until app_queue is reloaded.
  23. preload => pbx_config.so
  24. preload => chan_local.so
  25. ;preload => res_mwi_blf.so ;auto-inserted by FreePBX
  26. ;
  27. ; Uncomment the following if you wish to use the Speech Recognition API
  28. ;preload => res_speech.so
  29. ;
  30. ; If you want, load the GTK console right away.
  31. ; KDE console is obsolete and was removed from Asterisk 2008-01-10
  32. ;
  33. noload => pbx_gtkconsole.so
  34. ;load => pbx_gtkconsole.so
  35. noload => pbx_kdeconsole.so
  36. ;
  37. ; Intercom application is obsoleted by
  38. ; chan_oss. Don't load it.
  39. ;
  40. noload => app_intercom.so
  41. ;
  42. ; DON'T load the chan_modem.so, as they are obsolete in * 1.2
  43.  
  44. noload => chan_modem.so
  45. noload => chan_modem_aopen.so
  46. noload => chan_modem_bestdata.so
  47. noload => chan_modem_i4l.so
  48.  
  49. ; Trunkisavail is a broken module supplied by Trixbox
  50. noload => app_trunkisavail.so
  51.  
  52. ; Ensure that format_* modules are loaded before res_musiconhold
  53. ;load => format_ogg_vorbis.so
  54. load => format_wav.so
  55. load => format_pcm.so
  56.  
  57. ; format_au.so is removed from Asterisk 1.4 and later, remove ; to enable
  58. ;load => format_au.so
  59.  
  60. ; This isn't part of 'Asterisk' iteslf, it's part of asterisk-addons. If this isn't
  61. ; installed, asterisk will fail to start. But it does need to go here for native MOH
  62. ; to work using mp3's.
  63. ; Note that on a system with a high number of calls, using a compressed audio format for
  64. ; musiconhold takes CPU resources. Converting these files to ulaw/alaw makes the job
  65. ; much easier for your CPU.
  66. load => format_mp3.so
  67. load => res_musiconhold.so
  68. ;
  69. ; Load either OSS or ALSA, not both
  70. ; By default, load no console driver
  71. ;
  72. noload => chan_alsa.so
  73. noload => chan_oss.so
  74. ;
  75. noload => app_directory_odbcstorage.so
  76. noload => app_voicemail_odbcstorage.so
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement