From 76f4f0218c450ca4da162362bdd42d77e65bf7bf Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 3 Aug 2007 20:14:06 +0000 Subject: [PATCH] (closes issue #10194) Reported by: blitzrage Patches: bug0010194 uploaded by vovochka Tested by: blitzrage Fix a problem when you call Voicemail() with multiple mailboxes specified and ODBC_STORAGE is in use. The audio part of the message was only given to the first mailbox specified. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@78101 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 79bb81eb0b..d49c84eb84 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -3925,8 +3925,15 @@ static int notify_new_message(struct ast_channel *chan, struct ast_vm_user *vmu, attach_user_voicemail = ast_test_flag(vmu, VM_ATTACH); if (!ast_strlen_zero(vmu->serveremail)) myserveremail = vmu->serveremail; + + if (attach_user_voicemail) + RETRIEVE(todir, msgnum); + /*XXX possible imap issue, should category be NULL XXX*/ sendmail(myserveremail, vmu, msgnum, vmu->context, vmu->mailbox, cidnum, cidname, fn, fmt, duration, attach_user_voicemail, chan, category); + + if (attach_user_voicemail) + DISPOSE(todir, msgnum); } if (!ast_strlen_zero(vmu->pager)) {