mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
added counter for voicemail show users, issue 10462, thanks junky
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79724 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -7505,6 +7505,7 @@ static int handle_voicemail_show_users(int fd, int argc, char *argv[])
|
||||
struct ast_vm_user *vmu;
|
||||
char *output_format = "%-10s %-5s %-25s %-10s %6s\n";
|
||||
const char *context = NULL;
|
||||
int users_counter = 0;
|
||||
|
||||
if ((argc < 3) || (argc > 5) || (argc == 4))
|
||||
return RESULT_SHOWUSAGE;
|
||||
@@ -7553,9 +7554,11 @@ static int handle_voicemail_show_users(int fd, int argc, char *argv[])
|
||||
inboxcount(tmp, &newmsgs, &oldmsgs);
|
||||
snprintf(count,sizeof(count),"%d",newmsgs);
|
||||
ast_cli(fd, output_format, vmu->context, vmu->mailbox, vmu->fullname, vmu->zonetag, count);
|
||||
users_counter++;
|
||||
}
|
||||
}
|
||||
AST_LIST_UNLOCK(&users);
|
||||
ast_cli(fd, "%d voicemail users configured.\n", users_counter);
|
||||
return RESULT_SUCCESS;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user