mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-25 07:01:09 +00:00
Add 'voicemail reload' command.
Reported by: eliel Patch by: eliel (Closes issue #11365) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@94053 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -7761,9 +7761,33 @@ static char *handle_voicemail_show_zones(struct ast_cli_entry *e, int cmd, struc
|
||||
return res;
|
||||
}
|
||||
|
||||
/*! \brief Reload voicemail configuration from the CLI */
|
||||
static char *handle_voicemail_reload(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
|
||||
{
|
||||
switch (cmd) {
|
||||
case CLI_INIT:
|
||||
e->command = "voicemail reload";
|
||||
e->usage =
|
||||
"Usage: voicemail reload\n"
|
||||
" Reload voicemail configuration\n";
|
||||
return NULL;
|
||||
case CLI_GENERATE:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (a->argc != 2)
|
||||
return CLI_SHOWUSAGE;
|
||||
|
||||
ast_cli(a->fd, "Reloading voicemail configuration...\n");
|
||||
load_config(1);
|
||||
|
||||
return CLI_SUCCESS;
|
||||
}
|
||||
|
||||
static struct ast_cli_entry cli_voicemail[] = {
|
||||
AST_CLI_DEFINE(handle_voicemail_show_users, "List defined voicemail boxes"),
|
||||
AST_CLI_DEFINE(handle_voicemail_show_zones, "List zone message formats"),
|
||||
AST_CLI_DEFINE(handle_voicemail_reload, "Reload voicemail configuration"),
|
||||
};
|
||||
|
||||
static void poll_subscribed_mailboxes(void)
|
||||
|
Reference in New Issue
Block a user