similar to: [MACRO-SCREEN] and MACRO_RESULT

Displaying 20 results from an estimated 1200 matches similar to: "[MACRO-SCREEN] and MACRO_RESULT"

2007 Apr 09
2
trouble recording calls
Hi all, I am having the following trouble with recording calls: When calls come into the support line did number, the call starts to record on the first queue, but appears to hang up when the call actually connects to the engineer (ie I see "got hangup request" on the cli and then mixmonitor ends.) I am guessing this has to do with the announce file that is played to the engineer
2007 Jan 16
3
IAX Trunk timing
I have read that an IAX trunk requires a timing device. What wasn't clear to me was whether it is like TDM ie 1 timing device for the trunk, or if each end requires a timing device. I have a zaptel card in one server; do I have to have one in the second server in order to do an IAX trunk? I set up a trunk and so far calls can be made one way, but not the other. It is probably just not
2008 Feb 20
3
Dial+Macro and Queue
A call comes in and goes into the queue, the queue dials a sip channel using a macro. The macro plays a set of options to the callee and if the callee presses 3 it sets MACRO_RESULT=CONTINUE and the macro ends. For some reason the caller goes back into the queue rather than continueing on in the dial plan. Why is this, i could have sworn in 1.2 if i set MACRO_RESULT=CONTINUE that the
2015 Nov 04
4
Find me macro - calling multiple people to get a hold of one
Hi list, We're trying to set up a phone number that customers can call to get a hold of anyone of a group of sysadmins (and not their voice mails!). We found the findme example ([1]) that makes the callees press 1 to accept the call. It almost works, but it doesn't work correctly when one of the callees, the sysadmins, hangs up after accepting the call. We're using this
2011 Feb 02
1
Problems using Background within a macro on V 1.4
Hi List I have had a look at the various posts on this and seem to be more confused than ever - but then again that's not hard ;-) I am using Version 1.4.33.1 build from the Debian "lenny" distros I am trying to implement a simple screening [macro-screen] exten => s,1,Background(press1) exten => s,n,WaitExten(5) exten => 1,1,NoOp(accepted) ; Dont set a reply so dial
2010 Sep 06
2
Macro when calling cellphone (GSM) + silence when connecting
Hello list, I'm using the following macro when calling an external callphone/GSM number : [macro-press1] exten => s,1,NoOp() exten => s,n,Playback(/var/lib/asterisk/sounds/prompts/press1) exten => s,n,Read(INPUT,,1,1,1) exten => s,n,NoOp(input : ${INPUT}) exten => s,n,GoToIf($["${INPUT}"=="1"]?exit:hangup) exten => s,n(exit),NoOp(call accepted) exten
2005 Jan 19
5
Call Screen Macro Not Exiting when call rejected
This is a followup to the posting earlier about Hunt Groups with Call Screening. I have implemented the following macro and for some reason the Macro does not exit and continue the context it was called from when the called party rejects the call - It always drops through to the NoOp at the end and connects the call. Below are two examples of the dial commands I am using to call the macro.
2007 Jul 05
2
Call Screening Not Working
I am using the Find-me/Follow-me example below with screening: http://www.voip-info.org/wiki/view/Asterisk+tips+findme Here is my actual config: [macro-screen] exten => s,1,Wait(1) exten => s,n,Background(press-1-to-be-connected-to-the-caller) exten => s,n,Set(TIMEOUT(response=5)) exten => 1,1,NoOp(Caller accepted) exten => i,1,Set(MACRO_RESULT=CONTINUE) exten =>
2006 Nov 22
1
DTMF detection during Call
Hi I have calls comming from a SIP-ATA-Box via Asterisk to PSTN Phones by outbound SIP. Now i want to detect DTMF-Tone Code coming from the called party to trigger a signal. Can this be done with asterisk? I read that the codec with DTMF detection are ulaw and alaw. But i couldn't find a command to detect dtmf's within a normal call. thanks and mani greetings Christian
2006 Oct 18
4
Findme problem
Greetings all, I've been working on having Asterisk put a call through to two different numbers, and give the call to the first one that acknowledges by pressing the 1 key. I found an example on the wiki, but I can't get it working. When I answer the call I hear the message telling me to press 1 to connect, and as soon as the message is done, the call is connected. In other words, it
2006 Nov 03
1
SendDTMF() behaves strangely
Hi, everybody: As part of a paging macro I'm using SendDTMF to send digits to the called party. The section looks like this: exten => s,1,Wait(0.5) exten => s,n,SendDTMF(9531290) exten => s,n,Wait(1.0) exten => s,n,Set(MACRO_RESULT=CONTINUE) To test I direct the call to a live extension just to hear what's happening -- what actually happens is that only the 9 is sent, and
2007 Apr 02
1
understanding what h extension does
I am trying to make a dialplan that when I dial 90 I can go round a whole set of extensions and leave them a short message, hangup and go on the next one. I use the M facility of dial, with something like this [messages] exten => 90,n(calcnextchan),Set(DIALCHAN=...) exten => 90,n,Dial(${DIALCHAN},30,M(domessage)) exten => 90,n,Goto(calcnextchan) [macro-domessage] exten =>
2006 Oct 29
1
Multiple dial macros at the same time
I am setting up an after-hours on-call system. Someone calls in and requests service, and while they listen to music on hold, we dial out to several people's cell phones and home phones. We don't know if they will be answered by the employee, or by voicemail or a spouse/relative/child/pet. So we play a message that says "press 1 to accept the call" and ask employees to train
2010 Apr 20
2
Read Timeout
Hello, I use the following macro to screen calls when they come in. Priv-instruct-custom says "press 1 to accept, press 2 to reject" However, when no input is made (or the call goes to my mobile's voicemail and therefore no input is made), the result is that the ACCEPT variable is not set and then the GotoIf statement fails. How can I resolve this? Can I simply preset the ACCEPT
2007 Jul 10
0
Macro Goofiness
I am trying to use a macro to screen calls by calling several different phones at the same time in different groups. Find me will not work and queues will not work either. Trust me, I've tried them both and they don't work like they should. Here is what I have: A call comes into 6084 and does the following (in default context): exten => 6084,1,NoOp(test) exten =>
2005 Jul 12
0
Returning values from macro inside Dial command
I'd like to set some variables inside the macro called from Dial(). As far as I can tell, though, if you just do a SetVar inside the macro, it's set in a different context and isn't available to the code that calls the macro. Am I missing something? What's the right way to return data from the macro call? (Other than the MACRO_RESULT feature.) I'm using the
2010 Feb 24
0
Question
Ok so a while back I found an example for having a number dial multiple numbers and then whoever answers and confirms gets the call. (don't recall who the example was from, but thank you!) But Now today I've been playing with TTS and STT and came across the BackgroundDetect command. Now If I use this allow it works fine. But when I try and use it with this it never actually detects me
2009 Dec 03
1
Dial application with M option
Hello, What i am trying to do is ..... Dail a number and ask if you wana talk to XXX press 1 and if you dont wana talk press any other key. For this purpose i am using this link<http://www.voip-info.org/wiki/view/Asterisk+cmd+Dial> . *I am using this option :- * *M(**x**)*: Executes the macro (x) upon connect of the call (i.e. when the called party answers). IMPORTANT - The CDR
2008 Oct 29
2
help with doing a manipulation on a column of a data frame based on another column
#this is my stab at - I am sure that I am missing something. If this doesn't make sense then please ask for more details. #This may show my low level of programing knowledge hester. <- c(1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4) value <- rnorm(16) x <- data.frame(value, hester.) z <- (if(x[,"hester."]==1){ x[,"value"]*6.250} else if(x[,"hester."]==2){
2003 Oct 02
7
Any way to get out of a remote console without stopping *
This probably has an easy solution, but I found it yet. How can I get out of a remote console after using ssh to get into the box, making changes, reload etc. without stopping *? Thanks in advance. Sincerely, Andy Hester Consero