Displaying 3 results from an estimated 3 matches for "extexs".
Did you mean:
extens
2005 Mar 08
2
GotoIf with Authenticate
Quick question...Im authenticate all exten except this one(2006). If I call from ext 2006 I still have to authenticate. If I call form any other ext I have to authenticate. Any suggestions?
Thanks
extex => s,1,GotoIf($[${EXTEN} = "2006"]?3)
exten => s,2,Authenticate(731)
exten => s,3,GotoIf($[foo${ECID${CALLERIDNUM}} = foo]?4)
exten =>
2005 Feb 24
2
Delay after entering digits with IVR
I have a [start] context that all my inbound and '0' calls are routed
into.
Because of the way I want to set my system up, I want to prompt the user
to enter a 1 if they know the extension, or a 2 for a directory and
nothing else.
It works, however there is a 5 to 10 second delay after enter the 1 or 2
before the system responds.
I have read over the wiki on how asterisk handles digit
2004 Jun 10
4
How to get the Called id with AGI
Hi all,
Is there a way to get the "called id" (the B number) with AGI perl ?
I know how to get the caller id which is working fine and is just below:
#!/usr/bin/perl
use Asterisk::AGI;
$AGI = new Asterisk::AGI;
my %input = $AGI->ReadParse();
$callerid = $input{'callerid'};
$AGI->say_digits($callerid);
}
Thanks in advance,
Angel.