rexd
January 31, 2019, 12:05pm
1
Hi Guys,
Does ConfBridge on asterisk 1.8 have the MeetMe feature - ‘x’ — which close the conference when last marked user exits . or how to close the conference room when the last marked user exits in Asterisk 1.8 ConfBridge. Please help.
Thanks in advance
I doubt if anyone will remember, given that Asterisk 1.8 is three years past end of life.
This is the only documenation I found about Asterisk 1.8 and confbridge https://wiki.asterisk.org/wiki/display/AST/Application_ConfBridge
rexd
February 1, 2019, 3:59am
4
Not the answer i’m looking for, but thank you for your time guys.
rexd
February 2, 2019, 4:31am
5
HI Everyone,
I found a workaround & just posting it for a friend in need.
[bridge_name]
exten => _X.,1,Answer()
exten => _X.,n,Set(parameters)
exten => _X.,n,ConfBridge({conf_room},1M)
exten => h,1,System(/usr/sbin/asterisk -rx "core show channels" | grep 'dge( {conf_room}’ | awk ‘{print $1}’ | while read -r line ; do /usr/sbin/asterisk -rx “hangup request $line”; done)
I posted a few weeks ago, working on Asterisk 16 LTS, I dont use Asterisk 1.8 it is a dead version
confbridge kick all users if marked user leave the conference
exten => 1,1,Answer()
exten => 1,n,GotoIf($["${CALLERID(num)}"!="6000"]?end)
exten => 1,n,Set(CONFBRIDGE(user,admin)=yes)
exten => 1,n,Set(CONFBRIDGE(user,marked)=yes)
exten => 1,n,Goto(conf)
exten => 1,n(end),Set(CONFBRIDGE(user,end_marked)=yes)
exten => 1,n(conf),ConfBridge(1)
Device with CID 6000 is the marked user
rexd
February 2, 2019, 5:14am
7
Hi ambiorixg12,
This is a good dialplan. but not working on Asterisk 1.8.