]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 261736 via svnmerge from
authorJeff Peeler <jpeeler@digium.com>
Thu, 6 May 2010 20:12:47 +0000 (20:12 +0000)
committerJeff Peeler <jpeeler@digium.com>
Thu, 6 May 2010 20:12:47 +0000 (20:12 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

................
  r261736 | jpeeler | 2010-05-06 15:11:53 -0500 (Thu, 06 May 2010) | 15 lines

  Merged revisions 261735 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r261735 | jpeeler | 2010-05-06 15:10:59 -0500 (Thu, 06 May 2010) | 8 lines

    Only allow the operator key to be accepted after leaving a voicemail.

    Or rather disallow the operator key from being accepted when not offered,
    such as after finishing a recording from within the mailbox options menu.

    ABE-2121
    SWP-1267
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@261737 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

index 34c3c04ef85d5b70608b2462f6901517e4176ff3..35d38d9e41fd2a1f36cd9cf5aa8a9908c39a832c 100644 (file)
@@ -8718,6 +8718,9 @@ static int vm_exec(struct ast_channel *chan, void *data)
        }
 
        res = leave_voicemail(chan, args.argv0, &leave_options);
+       if (res == OPERATOR_EXIT) {
+               res = 0;
+       }
 
        if (res == ERROR_LOCK_PATH) {
                ast_log(LOG_ERROR, "Could not leave voicemail. The path is already locked.\n");
@@ -10495,7 +10498,7 @@ static int play_record_review(struct ast_channel *chan, char *playfile, char *re
                                return 1;
 #endif
                case '0':
-                       if (!ast_test_flag(vmu, VM_OPERATOR)) {
+                       if (!ast_test_flag(vmu, VM_OPERATOR) || !outsidecaller) {
                                cmd = ast_play_and_wait(chan, "vm-sorry");
                                break;
                        }