aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-17 13:48:44 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-17 13:48:44 +0000
commit2509b36b1bd37aee2dd287cc142b370afc77a1e9 (patch)
tree2d8020184050cd39053a572ff3ca84c0af662c71 /apps
parent4cef018229c154a88bcd8e49c2d1fcbf39774b0a (diff)
Fix authuser support. (issue #9740 reported by xmarksthespot)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@64720 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 482c6dbd2..b6c538aab 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -4626,7 +4626,7 @@ static void imap_mailbox_name(char *spec, struct vm_state *vms, int box, int use
/* Add authentication user if present */
if (!ast_strlen_zero(authuser))
- ast_build_string(&t, &left, "/%s", authuser);
+ ast_build_string(&t, &left, "/authuser=%s", authuser);
/* Add flags if present */
if (!ast_strlen_zero(imapflags))