|
|
@ -28,7 +28,7 @@
|
|
|
|
* \par See also
|
|
|
|
* \par See also
|
|
|
|
* \arg \ref Config_vm
|
|
|
|
* \arg \ref Config_vm
|
|
|
|
* \note For information about voicemail IMAP storage, https://wiki.asterisk.org/wiki/display/AST/IMAP+Voicemail+Storage
|
|
|
|
* \note For information about voicemail IMAP storage, https://wiki.asterisk.org/wiki/display/AST/IMAP+Voicemail+Storage
|
|
|
|
* \ingroup applications
|
|
|
|
* \ingroup applications
|
|
|
|
* \todo This module requires res_adsi to load. This needs to be optional
|
|
|
|
* \todo This module requires res_adsi to load. This needs to be optional
|
|
|
|
* during compilation.
|
|
|
|
* during compilation.
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -37,6 +37,16 @@
|
|
|
|
* with a plan to clean this up.
|
|
|
|
* with a plan to clean this up.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
|
|
* \li The application app_voicemail uses configuration file \ref voicemail.conf
|
|
|
|
|
|
|
|
* \addtogroup configuration_file Configuration Files
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
|
|
* \page voicemail.conf voicemail.conf
|
|
|
|
|
|
|
|
* \verbinclude voicemail.conf.sample
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*** MODULEINFO
|
|
|
|
/*** MODULEINFO
|
|
|
|
<use type="module">res_adsi</use>
|
|
|
|
<use type="module">res_adsi</use>
|
|
|
|
<use type="module">res_smdi</use>
|
|
|
|
<use type="module">res_smdi</use>
|
|
|
@ -14277,6 +14287,16 @@ static int unload_module(void)
|
|
|
|
return res;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
|
|
* \brief Load the module
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* Module loading including tests for configuration or dependencies.
|
|
|
|
|
|
|
|
* This function can return AST_MODULE_LOAD_FAILURE, AST_MODULE_LOAD_DECLINE,
|
|
|
|
|
|
|
|
* or AST_MODULE_LOAD_SUCCESS. If a dependency or environment variable fails
|
|
|
|
|
|
|
|
* tests return AST_MODULE_LOAD_FAILURE. If the module can not load the
|
|
|
|
|
|
|
|
* configuration file or other non-critical problem return
|
|
|
|
|
|
|
|
* AST_MODULE_LOAD_DECLINE. On success return AST_MODULE_LOAD_SUCCESS.
|
|
|
|
|
|
|
|
*/
|
|
|
|
static int load_module(void)
|
|
|
|
static int load_module(void)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
int res;
|
|
|
|