Please point me to samples of popping and wiping hangup handlers. I dont need to use the values returned; I just need to clear any handlers before Ipush a new one.Its not clear at https://wiki.asterisk.org/wiki/display/AST/Hangup+Handlers+Specificat..
Author : David P
We use Asterisk 14 to proxy calls between two servers, 10.0.0.192 to10.0.0.228. But sometimes another of our servers becomes listed as a SIPagent, even though the servers IP address isnt part of our sip.conf, extensions.conf, nor any other config I k..
Im looking for a way of detecting in my dialplan when a peer becomes non-responsive after answering. It seems that Asterisk knows when the peer becomes non-responsive because it logs Remote UNIX connection disconnected around the same time, and it se..
We tried to use the CURL fn to POST json, but its sent as form data and there seems no support for changing the Content-Type header. We switched to invoking curl in the shell.All the documentation I could find says there is just one parameter for ..
We want to record inbound channels at 16kHz, but send only 8kHz to our peers. Ive set our default profile in sip.conf to disallow all but g722, and the peers disallow all but ulaw. We have a proxy in front of Asterisk that is configured to disallow ..
Were using Asterisk 14.7.6 and I have a dialplan that ends like this: same => n,Dial(SIP/${EXTEN:0:4}@peer1) same => n,Set(GLOBAL(EpochAtCallEnd)=${EPOCH}) same => n,Hangup()When peer1 hangsup, the priorities after the Dial are executed fine. But w..
Were using Asterisk 14.7.6, and were able to route particular extensions to a corresponding automated member via SIP. Each extension has its own specific content, and all the automated members are configured to handle any of these extensions. We wo..
We would like to use 20-char extension values that use dashes and alphanums after the first four digits. In order to handle these via pattern-matching, how can I define a pattern that allows dashes? There seems to be no option at http://the-asterisk-book.com/1.6/einleitung-regex.html..