search for: dialnum

Displaying 6 results from an estimated 6 matches for "dialnum".

2005 Aug 08
1
Transfer a call from cell phone (pseudo-disa)
.... Is there a way to be able to transfer calls to other extensions of my asterisk server FROM the cell phone/ This isn't a Zap channel, so I'm a bit lost, but did specify the 'T' option in dial. Here's my context. Is this possible to do?? [aa_chris_disa] exten => s,1,Read(DIALNUM,custom/enter-num-then-pound,21) exten => s,2,Playback(connecting) exten => s,3,GotoIf($[${LEN(${DIALNUM})} < 5 ]?4:8) ; IF SHORTED THAN 5, its internal so dial internal exten => s,4,SetCallerID("Chris Mobile" <205>) exten => s,5,Dial(Local/${DIALNUM}@unlimited/n) ;DIA...
2005 Aug 15
1
Transferring from cell phone
.... Is there a way to be able to transfer calls to other extensions of my asterisk server FROM the cell phone/ This isn't a Zap channel, so I'm a bit lost, but did specify the 'T' option in dial. Here's my context. Is this possible to do?? [aa_chris_disa] exten => s,1,Read(DIALNUM,custom/enter-num-then-pound,21) exten => s,2,Playback(connecting) exten => s,3,GotoIf($[${LEN(${DIALNUM})} < 5 ]?4:8) ; IF SHORTED THAN 5, its internal so dial internal exten => s,4,SetCallerID("Chris Mobile" <205>) exten => s,5,Dial(Local/${DIALNUM}@unlimited/n) ;DIA...
2009 Jul 06
5
Dial cmd help
I have a dial cmd buried amongst a series of others in a macro like so: exten => s,n,Dial(SIP/1${ARG1}@sip_peer,60,T) Reason for adding a "1" is all the others in the macro don't want the "1" so this was easiest at the time. Now I need to send NA long distance through this macro. All the other dial cmds will just work, but this one is going to try to dial 11NXXNXXXXXX
2009 Apr 14
2
Exit Dial Application
...I' try to implement an automatic callback mechanism, just for local SIP calls.. Callback on busy and on no answer. If the other party doen't answer, it should be possible to press 5 to place an callback. Here is my dial: exten => _X.,1,Set(EXITCONTEXT=callback) exten => _X.,n,Dial(${DIALNUM},${ARG2},dtT) And here the script for callback. [callback] exten => 5,1,agi(str_concat.sh) exten => 5,n,Hangup If I call someone and press 5, nothing happens. What could be a problem? DTMFmode is RFC2833 for all SIP Accounts. DTMF's are transmitted correctly, I can enter the voicmail me...
2004 Jun 22
6
*69
Hello, I've managed to build in the "last number repeat" outlined at http://www.voip-info.org/wiki-Asterisk+last+number+repeat to call back the last person _I_ called from a particular phone, and now I'd like to try to do something similar for the common *69 -- call back the last number that called me. I assume I'll do part of this in my standard extension macro --
2009 May 21
0
Writing Hangup causes to CDR record
...these days? > > exten => s,n,Set(DIALS1="IAX2/xxxxxxxx at carrier1-out/${ARG1},90,T") > exten => s,n,Set(DIALS2="IAX2/xxxxxxxx at carrier2-out/${ARG1},90,T") > exten => s,n,Set(DIALS3="SIP/${ARG1}@carrier3-out,90,T") > > exten => s,n,Set(DialNum=3) > exten => s,n,Set(DialCount=0) > > exten => s,n(dial),Set(DialCount=$[1 + ${DialCount}]) > exten => s,n,GotoIf($[${DialCount} > ${DialNum}]?h,1) > exten => s,n,Dial(${DIALS${DialCount}}) > exten => s,n,Goto(dial) > > exten => s-CONGESTION,1,Congest...