[Asterisk-code-review] app_voicemail.c: Ability to silence instructions if greeting is present (asterisk[16])
Sean Bright
asteriskteam at digium.com
Tue Sep 7 14:06:44 CDT 2021
Sean Bright has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/16416 )
Change subject: app_voicemail.c: Ability to silence instructions if greeting is present
......................................................................
app_voicemail.c: Ability to silence instructions if greeting is present
There is an option to silence voicemail instructions but it does not
take into consideration if a recorded greeting exists or not. Add a
new 'S' option that does that.
ASTERISK-29632 #close
Change-Id: I03f2f043a9beb9d99deab302247e2a8686066fb4
---
M apps/app_voicemail.c
1 file changed, 16 insertions(+), 3 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/16/16416/1
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 9e0e74d..43aa5dd 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -182,6 +182,11 @@
<para>Skip the playback of instructions for leaving a message to the
calling party.</para>
</option>
+ <option name="S">
+ <para>Skip the playback of instructions for leaving a message to the
+ calling party, but only if a greeting has been recorded by the
+ mailbox user.</para>
+ </option>
<option name="t">
<argument name="x" required="false" />
<para>Play a custom beep tone to the caller instead of the default one.
@@ -671,7 +676,8 @@
OPT_MESSAGE_Urgent = (1 << 8),
OPT_MESSAGE_PRIORITY = (1 << 9),
OPT_EARLYM_GREETING = (1 << 10),
- OPT_BEEP = (1 << 11)
+ OPT_BEEP = (1 << 11),
+ OPT_SILENT_IF_GREET = (1 << 12),
};
enum vm_option_args {
@@ -691,6 +697,7 @@
AST_APP_OPTIONS(vm_app_options, {
AST_APP_OPTION('s', OPT_SILENT),
+ AST_APP_OPTION('S', OPT_SILENT_IF_GREET),
AST_APP_OPTION('b', OPT_BUSY_GREETING),
AST_APP_OPTION('u', OPT_UNAVAIL_GREETING),
AST_APP_OPTION_ARG('g', OPT_RECORDGAIN, OPT_ARG_RECORDGAIN),
@@ -6886,8 +6893,14 @@
#endif
RETRIEVE(prefile, -1, ext, context);
if (ast_fileexists(prefile, NULL, NULL) > 0) {
- if (ast_streamfile(chan, prefile, ast_channel_language(chan)) > -1)
+ if (ast_streamfile(chan, prefile, ast_channel_language(chan)) > -1) {
+ /* We know we have a greeting at this point, so squelch the instructions
+ * if that is what is being asked of us */
+ if (ast_test_flag(options, OPT_SILENT_IF_GREET)) {
+ ast_set_flag(options, OPT_SILENT);
+ }
res = ast_waitstream(chan, ecodes);
+ }
#ifdef ODBC_STORAGE
if (success == -1) {
/* We couldn't retrieve the file from the database, but we found it on the file system. Let's put it in the database. */
@@ -12400,7 +12413,7 @@
if (args.argc == 2) {
if (ast_app_parse_options(vm_app_options, &flags, opts, args.argv1))
return -1;
- ast_copy_flags(&leave_options, &flags, OPT_SILENT | OPT_BUSY_GREETING | OPT_UNAVAIL_GREETING | OPT_MESSAGE_Urgent | OPT_MESSAGE_PRIORITY | OPT_DTMFEXIT);
+ ast_copy_flags(&leave_options, &flags, OPT_SILENT | OPT_SILENT_IF_GREET | OPT_BUSY_GREETING | OPT_UNAVAIL_GREETING | OPT_MESSAGE_Urgent | OPT_MESSAGE_PRIORITY | OPT_DTMFEXIT);
if (ast_test_flag(&flags, OPT_RECORDGAIN)) {
int gain;
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/16416
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 16
Gerrit-Change-Id: I03f2f043a9beb9d99deab302247e2a8686066fb4
Gerrit-Change-Number: 16416
Gerrit-PatchSet: 1
Gerrit-Owner: Sean Bright <sean at seanbright.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20210907/00d69bb0/attachment.html>
More information about the asterisk-code-review
mailing list