summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-08-15 18:48:08 +0000
committerMark Spencer <markster@digium.com>2003-08-15 18:48:08 +0000
commit6aa3efe185a20c6f74713dd988823314a4324716 (patch)
treec28e53697480ad7400b60b7544f6a102eb1d0562
parenteb72c49bd2a6893b9368017e07e3b744b4260792 (diff)
Make sure we copy the text file too
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1340 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xapps/app_voicemail2.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/app_voicemail2.c b/apps/app_voicemail2.c
index 08fe3bc84..0104149b6 100755
--- a/apps/app_voicemail2.c
+++ b/apps/app_voicemail2.c
@@ -1810,6 +1810,9 @@ forward_message(struct ast_channel *chan, char *context, char *dir, int curmsg,
ast_log(LOG_DEBUG, sys);
system(sys);
}
+ snprintf(sys, sizeof(sys), "cp %s/msg%04d.txt %s/msg%04d.txt\n", dir, curmsg, todir, todircount);
+ ast_log(LOG_DEBUG, sys);
+ system(sys);
snprintf(fn, sizeof(fn), "%s/msg%04d", todir,todircount);
/* load the information on the source message so we can send an e-mail like a new message */