Skip to content
Snippets Groups Projects
Commit d9001300 authored by Naveen Albert's avatar Naveen Albert Committed by George Joseph
Browse files

func_vmcount: Add support for multiple mailboxes

Allows multiple mailboxes to be specified for VMCOUNT
instead of just one.

ASTERISK-29661 #close

Change-Id: I9108528300795fd5b607efa9d4dd7b74be031813
parent 5ca9898d
No related branches found
No related tags found
3 merge requests!138Merge branch asterisk-20.3.0 into devel properly,!123Merge asterisk '20.3.0' into devel,!118Draft: manager: AOC-S support for AOCMessage
Subject: func_vmcount
Multiple mailboxes may now be specified instead of just one.
...@@ -44,10 +44,12 @@ ...@@ -44,10 +44,12 @@
/*** DOCUMENTATION /*** DOCUMENTATION
<function name="VMCOUNT" language="en_US"> <function name="VMCOUNT" language="en_US">
<synopsis> <synopsis>
Count the voicemails in a specified mailbox. Count the voicemails in a specified mailbox or mailboxes.
</synopsis> </synopsis>
<syntax> <syntax>
<parameter name="vmbox" required="true" /> <parameter name="vmbox" required="true" argsep="&amp;">
<para>A mailbox or list of mailboxes</para>
</parameter>
<parameter name="folder" required="false"> <parameter name="folder" required="false">
<para>If not specified, defaults to <literal>INBOX</literal></para> <para>If not specified, defaults to <literal>INBOX</literal></para>
</parameter> </parameter>
...@@ -56,12 +58,19 @@ ...@@ -56,12 +58,19 @@
<para>Count the number of voicemails in a specified mailbox, you could also specify <para>Count the number of voicemails in a specified mailbox, you could also specify
the mailbox <replaceable>folder</replaceable>.</para> the mailbox <replaceable>folder</replaceable>.</para>
<para>Example: <literal>exten => s,1,Set(foo=${VMCOUNT(125@default)})</literal></para> <para>Example: <literal>exten => s,1,Set(foo=${VMCOUNT(125@default)})</literal></para>
<para>An ampersand-separated list of mailboxes may be specified to count voicemails in
multiple mailboxes. If a folder is specified, this will apply to all mailboxes specified.</para>
<example title="Multiple mailbox inbox count">
same => n,NoOp(${VMCOUNT(1234@default&amp;1235@default&amp;1236@default,INBOX)})
</example>
</description> </description>
</function> </function>
***/ ***/
static int acf_vmcount_exec(struct ast_channel *chan, const char *cmd, char *argsstr, char *buf, size_t len) static int acf_vmcount_exec(struct ast_channel *chan, const char *cmd, char *argsstr, char *buf, size_t len)
{ {
int total = 0;
char *mailbox = NULL;
AST_DECLARE_APP_ARGS(args, AST_DECLARE_APP_ARGS(args,
AST_APP_ARG(vmbox); AST_APP_ARG(vmbox);
AST_APP_ARG(folder); AST_APP_ARG(folder);
...@@ -82,7 +91,15 @@ static int acf_vmcount_exec(struct ast_channel *chan, const char *cmd, char *arg ...@@ -82,7 +91,15 @@ static int acf_vmcount_exec(struct ast_channel *chan, const char *cmd, char *arg
args.folder = "INBOX"; args.folder = "INBOX";
} }
snprintf(buf, len, "%d", ast_app_messagecount(args.vmbox, args.folder)); while ((mailbox = strsep(&args.vmbox, "&"))) {
int c;
if (ast_strlen_zero(mailbox)) {
continue;
}
c = ast_app_messagecount(mailbox, args.folder);
total += (c > 0 ? c : 0);
}
snprintf(buf, len, "%d", total);
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment