diff options
author | mmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b> | 2007-12-17 19:53:48 +0000 |
---|---|---|
committer | mmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b> | 2007-12-17 19:53:48 +0000 |
commit | b07f72f186300baec294dae5d31dc883e052ec81 (patch) | |
tree | 3f333172152bf28566591eb84db115c5b95c2afe | |
parent | a3b7e025e830b11123ff805aae3ee77fc807112c (diff) |
We need to create the directory for a voicemail user even if they are using IMAP storage
since greetings are stored in the filesystem.
(closes issue #11388, reported by spditner, patch by me inspired by a patch by spditner)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@93291 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r-- | apps/app_voicemail.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index cd0aa21f1..fec54fcab 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -6508,9 +6508,7 @@ static int vm_execmain(struct ast_channel *chan, void *data) /* Set language from config to override channel language */ if (!ast_strlen_zero(vmu->language)) ast_string_field_set(chan, language, vmu->language); -#ifndef IMAP_STORAGE create_dirpath(vms.curdir, sizeof(vms.curdir), vmu->context, vms.username, ""); -#endif /* Retrieve old and new message counts */ if (option_debug) ast_log(LOG_DEBUG, "Before open_mailbox\n"); |