aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-30 14:52:44 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-30 14:52:44 +0000
commit07c38fe4c48eca8fd70cb352e25bfd8a574e7184 (patch)
treedfdbd4fa2de8f02b8bc1319ef661f9d2e346e742
parentffd9c021be37e8e6854c6fbca383004bd0bcbbfd (diff)
Merged revisions 221085 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r221085 | seanbright | 2009-09-30 10:47:58 -0400 (Wed, 30 Sep 2009) | 9 lines Clarify documentation for VoiceMailMain()'s a() option. We require box numbers, not names as the documentation implies. (issue #14740) Reported by: pj Patches: __20090729-app_voicemail-documentation.patch uploaded by lmadsen (license 10) Tested by: seanbright, lmadsen ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@221087 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_voicemail.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index d7387282e..23303e48b 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -533,7 +533,18 @@ static char *descrip_vmain =
" message. The units are whole-number decibels (dB).\n"
" s - Skip checking the passcode for the mailbox.\n"
" a(#) - Skip folder prompt and go directly to folder specified.\n"
- " Defaults to INBOX\n";
+ " Accepted values are:\n"
+ " 0 for INBOX\n"
+ " 1 for Old\n"
+ " 2 for Work\n"
+ " 3 for Family\n"
+ " 4 for Friends\n"
+ " 5 for Cust1\n"
+ " 6 for Cust2\n"
+ " 7 for Cust3\n"
+ " 8 for Cust4\n"
+ " 9 for Cust5\n"
+ " Defaults to 0 (INBOX).\n";
static char *synopsis_vm_box_exists =
"Check to see if Voicemail mailbox exists";