aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-19 18:09:09 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-19 18:09:09 +0000
commit2f8100f3e2963044fb2cfb9f3d82dc55ed41b1f9 (patch)
tree2f25caf411dc8b593d71b8bc5e02427b858d48bd /apps
parentaeb753303c96505f242b1d2bc92c55577c36ca77 (diff)
forcename and forcegreetings options should check to see if the recording already exists
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@55434 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c25
1 files changed, 16 insertions, 9 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index c857096ee..993e4df13 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -4711,21 +4711,28 @@ static int vm_newuser(struct ast_channel *chan, struct ast_vm_user *vmu, struct
/* If forcename is set, have the user record their name */
if (ast_test_flag(vmu, VM_FORCENAME)) {
snprintf(prefile,sizeof(prefile), "%s%s/%s/greet", VM_SPOOL_DIR, vmu->context, vms->username);
- cmd = play_record_review(chan,"vm-rec-name",prefile, maxgreet, fmtc, 0, vmu, &duration, NULL, record_gain);
- if (cmd < 0 || cmd == 't' || cmd == '#')
- return cmd;
+ if (ast_fileexists(prefile, NULL, NULL) < 1) {
+ cmd = play_record_review(chan, "vm-rec-name", prefile, maxgreet, fmtc, 0, vmu, &duration, NULL, record_gain);
+ if (cmd < 0 || cmd == 't' || cmd == '#')
+ return cmd;
+ }
}
/* If forcegreetings is set, have the user record their greetings */
if (ast_test_flag(vmu, VM_FORCEGREET)) {
snprintf(prefile,sizeof(prefile), "%s%s/%s/unavail", VM_SPOOL_DIR, vmu->context, vms->username);
- cmd = play_record_review(chan,"vm-rec-unv",prefile, maxgreet, fmtc, 0, vmu, &duration, NULL, record_gain);
- if (cmd < 0 || cmd == 't' || cmd == '#')
- return cmd;
+ if (ast_fileexists(prefile, NULL, NULL) < 1) {
+ cmd = play_record_review(chan, "vm-rec-unv", prefile, maxgreet, fmtc, 0, vmu, &duration, NULL, record_gain);
+ if (cmd < 0 || cmd == 't' || cmd == '#')
+ return cmd;
+ }
+
snprintf(prefile,sizeof(prefile), "%s%s/%s/busy", VM_SPOOL_DIR, vmu->context, vms->username);
- cmd = play_record_review(chan,"vm-rec-busy",prefile, maxgreet, fmtc, 0, vmu, &duration, NULL, record_gain);
- if (cmd < 0 || cmd == 't' || cmd == '#')
- return cmd;
+ if (ast_fileexists(prefile, NULL, NULL) < 1) {
+ cmd = play_record_review(chan, "vm-rec-busy", prefile, maxgreet, fmtc, 0, vmu, &duration, NULL, record_gain);
+ if (cmd < 0 || cmd == 't' || cmd == '#')
+ return cmd;
+ }
}
return cmd;