summaryrefslogtreecommitdiff
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2011-05-20 18:29:59 +0000
committerJonathan Rose <jrose@digium.com>2011-05-20 18:29:59 +0000
commitd33bbaae9fa550c6066c149851d3b39c3561799f (patch)
treefd6be92f3c3baad7ca808e56ac1020ec3d5086b3 /apps/app_voicemail.c
parent2af231dd91289900344fae191ad9ddf7a694ccb6 (diff)
Merged revisions 320162 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r320162 | jrose | 2011-05-20 13:12:21 -0500 (Fri, 20 May 2011) | 15 lines Fixes an imapfolder related crash imapfolders being set in the general section of voicemail would cause the inbox folder name to change. Since sound file names are made based on the names of the folders, this would cause the audio related to that folder name to change and if Asterisk attempted to play it, the channel would instantly hang up when the audio file couldn't be found. This patch searches for the name of the folder first to leave existing behavior in tact and if that fails, it uses the normal inbox name to get the sound file instead. (closes issue #16104) Reported by: blkline Review: https://reviewboard.asterisk.org/r/1215/ ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@320178 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_voicemail.c')
-rw-r--r--apps/app_voicemail.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 231863a2b..0433844c7 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -6698,7 +6698,21 @@ static int get_folder(struct ast_channel *chan, int start)
if (d)
return d;
snprintf(fn, sizeof(fn), "vm-%s", mbox(NULL, x)); /* Folder name */
- d = vm_play_folder_name(chan, fn);
+
+ /* The inbox folder can have its name changed under certain conditions
+ * so this checks if the sound file exists for the inbox folder name and
+ * if it doesn't, plays the default name instead. */
+ if (x == 0) {
+ if (ast_fileexists(fn, NULL, NULL)) {
+ d = vm_play_folder_name(chan, fn);
+ } else {
+ ast_verb(1, "failed to find %s\n", fn);
+ d = vm_play_folder_name(chan, "vm-INBOX");
+ }
+ } else {
+ d = vm_play_folder_name(chan, fn);
+ }
+
if (d)
return d;
d = ast_waitfordigit(chan, 500);