Displaying 3 results from an estimated 3 matches for "say_dtmf_interrupt".
2023 May 17
1
SAY_DTMF_INTERRUPT not working
Hi,
I am trying to use SAY_DTMF_INTERRUPT with Asterisk 20.0.1. I see that I
asked about it here https://www.spinics.net/lists/asterisk/msg174142.html
and Sean was nice enough to create a patch. I am trying it on 20.0.1 by
doing in the dial plan:
CHANNEL(SAY_DTMF_INTERRUPT)=on
and I get back:
Unknown or unavailable item requested: 'SAY...
2015 Apr 10
0
Set(CHANNEL(SAY_DTMF_INTERRUPT)=1)
?It seems this variable was removed, since I get an error when I execute
this code
Set(CHANNEL(SAY_DTMF_INTERRUPT)=1)
Please clarify what happened ?to this option and if the behavior can be
achieved some in other way.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20150409/da4f83ce/attachment.html>
2020 Feb 04
0
Always Be Conferencing v16e - pure AEL-based dial plan solution
...)=${status_});
return;
}
/* The "tts-gps" context Speaks out the GPS co-ordinates of the OG caller. */
context pngnpbx-abc-tts-gps {
_[a-zA-Z0-9]. => {
&pngnpbx-abc-account(${FILTER(a-zA-Z0-9,${EXTEN})});
&pngnpbx-abc-tts-status(${abcid},1);
Set(SAY_DTMF_INTERRUPT=true);
Set(lat=${DB(pngnpbx/abc/cb/${abcid}/gps/lat)});
Set(lon=${DB(pngnpbx/abc/cb/${abcid}/gps/lon)});
Set(elv=${DB(pngnpbx/abc/cb/${abcid}/gps/elv)});
&pngnpbx-abc-tunes();
if( ${LEN(${lat})} > 0 && ${LEN(${lon})} > 0 ) {
SayA...