[asterisk-users] MeetMe Admin Functions

Jeremy Mann jmann at txhmg.com
Tue Feb 19 12:04:23 CST 2008


Perfect! Thanks.

-----Original Message-----
From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Tony Mountifield
Sent: Tuesday, February 19, 2008 11:01 AM
To: asterisk-users at lists.digium.com
Subject: Re: [asterisk-users] MeetMe Admin Functions

In article <5ED7AD82D22AE34E9000DDEAE5C999512D9DE6CEA0 at exchsvr.txhmg.com>,
Jeremy Mann <jmann at txhmg.com> wrote:
>
> Is there any way that I can have an admin user hit * and then Mute all other users in a
> meetme conference?  Sort of a moderator function?
>
> I know it can be done with MeetMeAdmin, but as I see it that requires a separate extension
> to dial, unless I've got the logic wrong?
>
> If it can be done in a single extension please show examples.

Use the X option in MeetMe to allow a single digit to be entered which
will exit the conference and go to that extension number. This is used
without pressing * first.

At that extension you can execute MeetMeAdmin on the same conference to
mute all the non-admin users, and then execute MeetMe again to go straight
back into the conference. e.g.

[conf]
; conference must be defined or saved in channel variable CONF
; note that _X. matches 2 digits or more,
; leaving single digit exts available
exten => _X.,1,NoOp(entering conference ${CONF})
exten => _X.,n,Set(SAVEDEXTEN=${EXTEN})
exten => _X.,n,MeetMe(${CONF},X)
exten => _X.,n,Hangup

; allow user to press 5 to mute all users
exten => 5,1,NoOp(muting conference ${CONF})
exten => 5,n,MeetMeAdmin(${CONF},N)
exten => 5,n,Goto(${SAVEDEXTEN},1)

; allow user to press 6 to unmute all users
exten => 6,1,NoOp(unmuting conference ${CONF})
exten => 6,n,MeetMeAdmin(${CONF},n)
exten => 6,n,Goto(${SAVEDEXTEN},1)

Hope this helps!

Cheers
Tony
--
Tony Mountifield
Work: tony at softins.co.uk - http://www.softins.co.uk
Play: tony at mountifield.org - http://tony.mountifield.org

_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

This e-mail, facsimile, or letter and any files or attachments transmitted with it contains information that is confidential and privileged. This information is intended only for the use of the individual(s) and entity(ies) to whom it is addressed. If you are the intended recipient, further disclosures are prohibited without proper authorization. If you are not the intended recipient, any disclosure, copying, printing, or use of this information is strictly prohibited and possibly a violation of federal or state law and regulations. If you have received this information in error, please notify Texas Health Management Group immediately at 1-817-310-4999. Texas Health Management Group, its subsidiaries, and affiliates hereby claim all applicable privileges related to this information.



More information about the asterisk-users mailing list