V
V
Vasya Pupkin2021-08-09 09:05:10
Asterisk
Vasya Pupkin, 2021-08-09 09:05:10

Is there an invitation to a conference on Asterisk via buttons?

A simple conference is configured via sip.conf:

[local]
exten => 900,1,Answer()
exten => 900,n,Macro(recording,${CALLERID(num)},${EXTEN})
exten => 900,n,ConfBridge(1,confer)

and confbridge.conf
[confer]
type=bridge
max_members=20
video_mode=none
mixing_interval=10
internal_sample_rate=auto
record_conference=no

those. people enter the conference themselves or they are translated by the secretary. And how to invite people to the conference while in it?
2-3 people in the room communicate and you need to call more, how to do this? I did not find a keyboard shortcut or setting where this can be done, including in features.conf

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Rsa97, 2021-08-09
@Desert-Eagle

confbridge.conf

[admin_menu]
...
*#=dialplan_exec(conf-invite,s,1)

extensions.conf
[conf-invite]
exten => s,1,Answer
same => n,Read(NUMBER,vm-enter-num-to-call)
same => n,Originate(SIP/${NUMBER},exten,conf-invite,conference,1)

exten => conference,1,Answer
same => n,ConfBridge(conference,bridge,simple-user,user_menu)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question