diff options
author | jpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b> | 2011-02-08 19:25:10 +0000 |
---|---|---|
committer | jpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b> | 2011-02-08 19:25:10 +0000 |
commit | 4c5daed3e4de16b9d8f8688a7bd485a2e7525436 (patch) | |
tree | ec70a4ca864e075245aefe809fa1faaa1390b354 | |
parent | 08a0076e2f91dae032aa726e91cfc16ef8530fd4 (diff) |
Merged revisions 306960 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r306960 | jpeeler | 2011-02-08 13:18:50 -0600 (Tue, 08 Feb 2011) | 9 lines
Backup file storing message duration is not used with IMAP_STORAGE, remove code.
The message duration is stored in the body of the email when using IMAP_STORAGE,
so nothing needs to happen with the backup file.
(closes issue #18718)
Reported by: kerframil
........
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@306961 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r-- | apps/app_voicemail.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 504794bfd..195f1e0c1 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -6505,14 +6505,16 @@ static int vm_forwardoptions(struct ast_channel *chan, struct ast_vm_user *vmu, } /* Back up the original file, so we can retry the prepend and restore it after forward. */ +#ifndef IMAP_STORAGE if (already_recorded) { ast_filecopy(backup, msgfile, NULL); copy(backup_textfile, textfile); } else { ast_filecopy(msgfile, backup, NULL); - copy(textfile,backup_textfile); + copy(textfile, backup_textfile); } +#endif already_recorded = 1; if (record_gain) |