search for: noanswer

Displaying 20 results from an estimated 404 matches for "noanswer".

2005 Mar 03
3
Why ${EXTEN} variable changes after Goto ?
Hi, I'm trying to implement dynamic routing of incoming calls to local extension if previous outgoing call was unanswered. But after I do Goto to s-NOANSWER, variable ${EXTEN} changes to 's-NOANSWER'. I guess this is normal, but I don't understand why ? How to workaround on this one ? Thanks in advance, regards, Rob. [outbound-capi-ISDN] exten => _0.,1,NoOp(Calling ISDN number ${EXTEN:1} on CAPI/7104370 from ${CALLERIDNUM}) exten =&g...
2007 Jul 13
3
Macro: s-NOANSWER, _s-.
Hi List; I have this example for Macro and I am not able to understand some line, if any one can help me plz :)- [macro-voicemail] exten => s,1,Dial(${ARG1},20) exten => s,2,Goto(s-${DIALSTATUS},1) exten => s-NOANSWER,1,Voicemail(u${MACRO_EXTEN}) exten => s-NOANSWER,2,Goto(incoming,s,1) exten => s-BUSY,1,Voicemail(b${MACRO_EXTEN}) exten => s-BUSY,2,Goto(incoming,s,1) exten => _s-.,1,Goto(s-NOANSWER,1) When it will go for the line: exten => s-NOANSWER,2,Goto(incoming,s,1) And when it will go fo...
2010 Apr 29
2
Code in extensions.conf to leave a voice mail in another PBX ?!
...eave a voice mail without any pb, but from pbx2 to pbx1 it just hang up. in pbx2 extensions.conf: i am using: exten => 8029,1,Dial(IAX2/pbx1/${EXTEN},20,tTWwr) in pbx1, i have: exten => 8029,1,Macro(stdexten,8029) and in stdexten macro: exten => s,n,Goto(s-${DIALSTATUS},1) exten => s-NOANSWER,1,Voicemail(u${ARG1}) exten => s-NOANSWER,2,Goto(default,s,1) exten => s-BUSY,1,Voicemail(b${ARG1}) exten => s-BUSY,2,Goto(default,s,1) exten => _s-.,1,Goto(s-NOANSWER,1) exten => a,1,VoicemailMain(${ARG1}) when calling from 8021(pbx2) to 8029(pbx1) i get on CLI pbx1: -- Executin...
2005 Jan 05
0
Polycom IP500 - problems with multiplesimultaneous calls
...uot; divert.busy.3.enabled="0" divert.busy.3.contact="" divert.busy.4.enabled="0" divert.busy.4.contact="" divert.busy.5.enabled="0" divert.busy.5.contact="" divert.busy.6.enabled="0" divert.busy.6.contact=""/> <noanswer divert.noanswer.1.enabled="0" divert.noanswer.1.timeout="60" divert.noanswer.1.contact="" divert.noanswer.2.enabled="0" divert.noanswer.2.timeout="60" divert.noanswer.2.contact="" divert.noanswer.3.enabled="0" divert.noanswer.3.t...
2009 Aug 25
1
followme app
Hi Someone may give me an example of followme() application using in a dialplan (including what to configure in followme.conf) ? I use asterisk 1.6.1 so if your example can match to that release it's will be wonderfull. Thank in advance. Harry. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Feb 15
0
Question about DIALSTATUS NOANSWER
Hi, according to the wiki the value NOANSWER for the channel variable DIALSTATUS means: No answer. The dial command reached its number, the number rang for too long, then the dial timed out. In out dialplan we grap all these events with exten => s-NOANSWER,1,Playback(sometext) exten => s-NOANSWER,2,WAIT(1) exten => s-NOANSWER,3,...
2005 Sep 15
3
${DIALSTATUS} problems
...busy. ${DIALSTATUS} is coming back ANSWER each time right before the channels hang up. Am using the following dialplan macro to dial out. [macro-advdial] exten => s,1,Dial(${ARG1},20,g) ; Ring the interface, 20 seconds maximum exten => s,2,Goto(s-${DIALSTATUS},1) ; Jump based on status (NOANSWER,BUSY,CHANUNAVAIL ,CONGESTION,ANSWER) exten => s-CHANUNAVAIL,1,NoOp("CHANUNAVAIL") exten => s-CHANUNAVAIL,2,UserEvent(ChannelUnavailable|Account: ${ACCOUNTCODE}^${CALLERIDNUM}) exten => s-CONGESTION,1,NoOp("CONGESTION") exten => s-CONGESTION,2,UserEvent(Congestion|Ac...
2007 Jul 04
1
Dialout Macro and transfer call in progress
...ot;]?7) ; If not existing ring the interface exten => s,6,Voicemail(u${ARG1}) ; If CFU failed, send to voicemail w/ unavail announce exten => s,7,Dial(${ARG2},20,tTrR) ; Ring the interface exten => s,8,Goto(s-${DIALSTATUS},1) ; Jump based on status (NOANSWER,BUSY,CHANUNAVAIL,CONGESTION,ANSWER) exten => s-NOANSWER,1,Set(temp=${DB(CFNA/${ARG1})}) ; Get CFNA key exten => s-NOANSWER,2,GotoIf($["${temp}" = ""]?4) ; If not existing, goto voicemail exten => s-NOANSWER,3,Dial(Local/${temp}@local/n) ; Forward on No An...
2007 Jun 16
2
MixMonitor Problem
...Monitor and StopMonitor. My extensions logic is attached below: exten => s,1,MixMonitor(${CALLERID(num)}_${TIMESTAMP}.gsm,b) exten => s,2,Dial(SIP/101,13) exten => s,3,StopMonitor() exten => s,4,NoOp(Dial Status: ${DIALSTATUS}) exten => s,5,Goto(sss-${DIALSTATUS},1) exten => sss-NOANSWER,1,VoiceMail(777 at salesvoice) exten => sss-NOANSWER,2,Goto(salesivr,s,4) As evident from the dialplan I only want to record the call when Dial(SIP/101,13) is successful. After that I disable recording by issuing the StopMonitor command. Now the problem is that when the status of dial is NOANSW...
2008 Mar 19
3
How to configure Voice mail for multi users.
...ese user can call to each other. Now i want to configure separate voice mail box for separate user. my extensions.conf ..... settings below.. [voicemail] exten => _X.,1,Dial(SIP/${EXTEN}) exten => _X.,n,NoOp(Dial Status: ${DIALSTATUS}) exten => _X.,n,Goto(s-${DIALSTATUS},1) exten => s-NOANSWER,1,Background(vm-nobodyavail) exten => s-NOANSWER,n,VoiceMail(${EXTEN}@usersmail) exten => s-NOANSWER,n,Hangup() exten => s-CONGESTION,1,Background(vm-nobodyavail) exten => s-CONGESTION,n,VoiceMail(${EXTEN}@usersmail) exten => s-CONGESTION,n,Hangup() exten => s-CANCEL,1,Backgroun...
2005 May 08
2
Background command noanswer option
Hello List, I am an Asterisk newbie, and I got a question about Asterisk Background command's option "noanswer": What is required from the user agent, such as a SIP phone, to be able to hear the playback without Answer()? I'm asking this because when I used X-Lite, I could hear the the audio file but when I used a hardware phone (an ATA in fact) I couldn't hear it. The ATA supports G711u,...
2009 Dec 13
1
Dial with timeout don't end call
...7998975) registered to an Asterisk (SVN-trunk-r234256) 1 Cell phone 00733025975 attached through H323. extensions.conf exten => 975,1,Goto(975-${DEVICE_STATE(SIP/0317998975)},1) exten => 975-INUSE,1,VoiceMail(0317998975 at inputinterior.se,bs) exten => 975-INUSE,2,Hangup() exten => 975-NOANSWER,1,VoiceMail(0317998975 at inputinterior.se,us) exten => 975-NOANSWER,2,Hangup() exten => 975-NOT_INUSE,1,Dial(SIP/0317998975&H323/00733025975 at Avaya,20) exten => 975-NOT_INUSE,2,Goto(975-${DIALSTATUS},1) exten => 975-NOT_INUSE,3,Hangup() When calling 975, both SIP and cell phone...
2014 Aug 07
2
agi get_data noanswer
Hi Guys.. I am making an anoucement machine that is not allowed to "answer" the call due to a billing issue. I found that Playback with "noanwser" is usefull in this case. $AGI->exec('Playback',"$message","noanswer")} But when i request some values to the user with get_data, i think there is an answer anywere. Is there a way to get_data without answering the call? Thanks in advance!! rv -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/piperm...
2007 Nov 29
2
Using existing extensions.conf macros, and co-habitation
...macro-stdexten]; ; ; Standard extension macro: ; ${ARG1} - Extension (we could have used ${MACRO_EXTEN} here as well) ; ${ARG2} - Device(s) to ring ; exten => s,1,Dial(${ARG2},20) ; Ring the interface, 20 seconds maximum exten => s,2,Goto(s-${DIALSTATUS},1) ; Jump based on status (NOANSWER,BUSY,CHANUNAVAIL,CONGESTION,ANSWER) exten => s-NOANSWER,1,Voicemail(u${ARG1}) ; If unavailable, send to voicemail w/ unavail announce exten => s-NOANSWER,2,Goto(default,s,1) ; If they press #, return to start exten => s-BUSY,1,Voicemail(b${ARG1}) ; If busy, send to voicemail w/ busy...
2009 Apr 16
7
How to send "404 Not found" SIP reply?
Hi, I am trying to send "404 Not found" reply, without any luck with the following: exten => 555,1,Playback(you-dialed-wrong-number,noanswer) exten => 555,n,Playback(check-number-dial-again,noanswer) exten => 555,n,Congestion() However the above results in "500 Service Unavailable" being send out. What would be the correct application/function to generate "404 Not found"? Thanks for help, Chris ------------...
2009 Jul 17
2
How do I create an IVR/Dial Group that works properly?
...call_extension,SIP/${EXTEN}) exten => _20[1-5],1,Macro(call_extension,IAX2/alanb/${EXTEN}) The Vars ALANL and ALANB are: ALANL=SIP/101 ALANB=IAX2/alanb/202 Here is the Macro belllord: [macro-belllord] exten => s,1,Dial(${ARG1},20,t) exten => s,n,Goto(s-${DIALSTATUS},1) exten => s-NOANSWER,1,Voicemail(${ARG2}@business,u) ; business is the voicemail context, ${ARG2} is the mailbox number to dial exten => s-NOANSWER,n,Hangup() exten => s-BUSY,1,Voicemail(${ARG2}@business,b) exten => s-BUSY,n,Hangup() exten => _s-.,1,Goto(s-NOANSWER,1) Here is the call-extension Macro:...
2005 Jul 09
2
Modifying astcc
Hi: Astcc is working fine, except for one thing. It doesn't give the called party enough time to answer the phone. If nobody picks up in two rings, astcc reports back no answer and hangs-up. The only instant NOANSWER "value" was mentioned in astcc.agi script is: elsif ($res eq "NOANSWER") { $res = &mystreamfile("astcc-noanswer"); Please help me find what and where to change to control the time astcc give to the called party to answer. Regards; Chawki...
2006 Mar 10
0
Voice Mail woe
...to 208 -- AGI Script dialparties.agi completed, returning 0 -- Executing Dial("SIP/208-f55b", "SIP/200|15|tTrwW") in new stack -- Called 200 -- SIP/200-a3b9 is ringing -- Nobody picked up in 15000 ms -- Executing GotoIf("SIP/208-f55b", "0?s-NOANSWER|1") in new stack -- Executing GotoIf("SIP/208-f55b", "0?s-NOANSWER|1") in new stack -- Executing NoOp("SIP/208-f55b", "Sending to Voicemail box 200") in new stack -- Executing Macro("SIP/208-f55b", "vm|200@default|NOANSWER&quot...
2006 Apr 20
1
Playback(something,noanswer) on Zap?
...heir phones. People no longer accept beeps as "number does not exist" signal. First thing I've tried was Playback(invalid). The problem was that asterisk answered incoming call. This should not happen when caller does not reach his/her destination. Next, I tried Playback(invalid,noanswer). This time, Asterisk did not answer the call. But there was no sound! Apparently, Playback(invalid,noanswer) does not work with Zap/PRI. Is this bug?
2009 Jan 30
0
Can't hear audio when Playback(something, noanswer) on Zap
...i I have this escenario: |SIP or H323 phone|---->|Cisco2600|----E1-pri---->|Asterisk|------>IVR, A2Billing, etc... The problem is that I can not hear any audio when call from 'sip or H323 phone' and configure something like: exten => _01XXXXXXX,1,Playback(thank-you-for-calling|noanswer) ... It works if I remove the 'noanswer' parameter but in this case it connects the call before 'called user' answer the call. please help, rafael My zaptel and extensions config: /etc/zaptel.conf ----------------------- span=1,1,0,ccs,hdb3,crc4 bchan=1-15,17-31 dchan=16 span=2...