Robert Rozman
2004-Dec-09 15:13 UTC
[Asterisk-Users] No ring signal when calling internal extensions ?
Hi, I have attached configuration settings and cannot get ring signal when calling internal extensions. I'm probably doing something wrong so would kindly ask for a tip how to do it properly : exten => 11,1,Macro(oneline,SIP/11) Calling 11 (this is the same with BT or iax softphones) doesn't give me a ring - what is missing ? Thanks, Rob. [macro-oneline] ; ; Standard extension macro (with call forwarding): ; ${ARG1} - Device(s) to ring ; exten => s,1,AGI(misterhouse.agi,"CallerID") ;exten => s,1,NoOp exten => s,2,DBget(temp=CFIM/${MACRO_EXTEN}) ; Get CFIM key, if not existing, goto 103 exten => s,3,Dial(Local/${temp}@default/n) ; Unconditional forward exten => s,4,Dial(${ARG1},30,tr) ; 20sec timeout exten => s,5,NoOp exten => s,6,DBget(temp=CFBS/${MACRO_EXTEN}) ; Get CFBS key, if not existing, goto 106 exten => s,7,Dial(Local/${temp}@default/n) ; Forward on busy or unavailable ; No CFIM key exten => s,103,Goto(s,4) ; No CFBS key - voicemail ? exten => s,105,Voicemail(b${MACRO_EXTEN}) exten => s,106,Hangup exten => s,107,Voicemail(u${MACRO_EXTEN}) exten => s,108,Hangup
Peter Svensson
2004-Dec-09 15:29 UTC
[Asterisk-Users] No ring signal when calling internal extensions ?
On Thu, 9 Dec 2004, Robert Rozman wrote:> Hi, > > I have attached configuration settings and cannot get ring signal when > calling internal extensions. I'm probably doing something wrong so would > kindly ask for a tip how to do it properly : > > exten => 11,1,Macro(oneline,SIP/11) > > Calling 11 (this is the same with BT or iax softphones) doesn't give me a > ring - what is missing ?I don't think all channels provide a ringing tone to the caller. For SIP it has to be generated by the remote device e.g. An alternative is to have Asterisk generate the ringing tone tothe caller for those channels which do not do so by themselfs, typically actual phones e.g. Use the 'r' option to Dial(). Or did you mean that the destination actually doesn't ring? As in no ring signal to the destination? Peter