[svn-commits] oej: trunk r92140 - in /trunk: apps/app_voicemail.c doc/manager_1_1.txt
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Dec 10 07:29:58 CST 2007
Author: oej
Date: Mon Dec 10 07:29:57 2007
New Revision: 92140
URL: http://svn.digium.com/view/asterisk?view=rev&rev=92140
Log:
Add a few extra headers in the voicemail users listing in
manager 1.1. Update documentation too.
(closes issue #11495)
Reported by: caio1982
Patches:
extra_vm_manager_info1.diff uploaded by caio1982 (license 22)
Modified:
trunk/apps/app_voicemail.c
trunk/doc/manager_1_1.txt
Modified: trunk/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_voicemail.c?view=diff&rev=92140&r1=92139&r2=92140
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Mon Dec 10 07:29:57 2007
@@ -7960,8 +7960,14 @@
"UniqueID: %s\r\n"
"ExitContext: %s\r\n"
"SayDurationMinimum: %d\r\n"
+ "SayEnvelope: %s\r\n"
+ "SayCID: %s\r\n"
+ "AttachMessage: %s\r\n"
"AttachmentFormat: %s\r\n"
+ "DeleteMessage: %s\r\n"
"VolumeGain: %.2f\r\n"
+ "CanReview: %s\r\n"
+ "CallOperator: %s\r\n"
"MaxMessageCount: %d\r\n"
"MaxMessageLength: %d\r\n"
"NewMessageCount: %d\r\n"
@@ -7970,11 +7976,31 @@
"IMAPUser: %s\r\n"
#endif
"\r\n",
- actionid, vmu->context, vmu->mailbox, vmu->fullname, vmu->email,
- vmu->pager, vmu->serveremail, vmu->mailcmd, vmu->language,
- vmu->zonetag, vmu->callback, vmu->dialout, vmu->uniqueid,
- vmu->exit, vmu->saydurationm, vmu->attachfmt, vmu->volgain,
- vmu->maxmsg, vmu->maxsecs,
+ actionid,
+ vmu->context,
+ vmu->mailbox,
+ vmu->fullname,
+ vmu->email,
+ vmu->pager,
+ vmu->serveremail,
+ vmu->mailcmd,
+ vmu->language,
+ vmu->zonetag,
+ vmu->callback,
+ vmu->dialout,
+ vmu->uniqueid,
+ vmu->exit,
+ vmu->saydurationm,
+ ast_test_flag(vmu, VM_ENVELOPE) ? "Yes" : "No",
+ ast_test_flag(vmu, VM_SAYCID) ? "Yes" : "No",
+ ast_test_flag(vmu, VM_ATTACH) ? "Yes" : "No",
+ vmu->attachfmt,
+ ast_test_flag(vmu, VM_DELETE) ? "Yes" : "No",
+ vmu->volgain,
+ ast_test_flag(vmu, VM_REVIEW) ? "Yes" : "No",
+ ast_test_flag(vmu, VM_OPERATOR) ? "Yes" : "No",
+ vmu->maxmsg,
+ vmu->maxsecs,
#ifdef IMAP_STORAGE
new, old, vmu->imapuser
#else
Modified: trunk/doc/manager_1_1.txt
URL: http://svn.digium.com/view/asterisk/trunk/doc/manager_1_1.txt?view=diff&rev=92140&r1=92139&r2=92140
==============================================================================
--- trunk/doc/manager_1_1.txt (original)
+++ trunk/doc/manager_1_1.txt Mon Dec 10 07:29:57 2007
@@ -107,6 +107,10 @@
New header
- (new) -> Items: Reports number of channels reported
+- Action VoicemailUsersList
+ Added new headers for SayEnvelope, SayCID, AttachMessage, CanReview
+ and CallOperator voicemail configuration settings.
+
* NEW ACTIONS
-------------
- Action: ModuleLoad
More information about the svn-commits
mailing list