S
S
Shing2015-05-14 13:26:31
Asterisk
Shing, 2015-05-14 13:26:31

How to make busy beeps for incoming (Asterisk)?

When the operator speaks on the phone, the one who calls him hears not busy beeps, but one very short and immediately break.
That is, it is not clear whether it is busy or the phone does not work.
Terminate call is busy.
I do Zapateller, it sounds, but it's a little different, you just need short beeps.
What is the reason?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
D
Dmitry Luponos, 2015-05-14
@Bessome

Processing in a context like:

exten => _X.,n,Dial(${exten},${RINGTIME},${DIALOPTIONS})  ; Ring the interface, Ringtime seconds maximum
exten => _X.,n,Goto(stdexten-${DIALSTATUS},1)  ; Jump based on status (NOANSWER,BUSY,CHANUNAVAIL,CONGESTION,ANSWER)
exten => stdexten-NOANSWER,1,Play("record/noanswer")
exten => stdexten-NOANSWER,n,Return()
exten => stdexten-BUSY,1,Play("record/busy")
exten => stdexten-BUSY,n,Return()
exten => stdexten-CHANUNAVAIL,1,Play("record/canal-nedostupen")
exten => stdexten-CHANUNAVAIL,n,Return()
exten => stdexten-BUSY,1,Play("record/busy")
exten => stdexten-BUSY,n,Return()
exten => stdexten-CONGESTION,1,Play("record/drugaya-oshibka")
exten => stdexten-CONGESTION,n,Return()
exten => stdexten-ANSWER ...............

Will play different message options for different event

A
alexander007, 2015-05-14
@alexander007

If this happens only from an external network, then most likely the problem is not with you. Write in more detail who is calling whom and show your log from the Asterisk console.

[
[email protected], 2015-08-29
@sinister_mole

VIP connection with ISP or DSS?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question