Displaying 3 results from an estimated 3 matches for "extex".
Did you mean:
exten
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 => s,4,SetCallerID(${ECID${CALLERIDNUM}})
exten => s,5,Goto(6)
exten => s,6,GotoIf($[foo${OUTCID_${ARG1}} = foo]?6)
exten => s,7...
2005 Feb 24
2
Delay after entering digits with IVR
...Response Timeout
; Is is Morning, Afternoon or Evening ?
; Lets play a differnet greeting for each time period.
exten => s,5,AGI(openclose.agi)
exten => s,6,GotoIF($[${STATUS} = morning]?10)
exten => s,7,GotoIF($[${STATUS} = afternoon]?12)
exten => s,8,GotoIF($[${STATUS} = evening]?14)
extex => s,9,Goto(s,6)
; The various Greetings based on Time of Day
exten => s,10,Background(rjs-morning-welcome)
exten => s,11,Goto(s,15)
exten => s,12,Background(rjs-afternoon-welcome)
exten => s,13,Goto(s,15)
exten => s,14,Background(rjs-evening-welcome)
; The Voice Menu
exten =>...
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.