similar to: change dialing process on live call

Displaying 20 results from an estimated 300 matches similar to: "change dialing process on live call"

2018 Jun 09
3
getting real sip status after dial
Hi, Is there any way I can get exact sip status from pjsip after a dial ? or all we can get is asterisk hangup causes ? Thanks in advance. KKh
2018 Jun 09
2
getting real sip status after dial
I think HANGUPCAUSE is channel agnostic. See: core show function HANGUPCAUSE Some thing like this IIRC: Set(my_cause=${HANGUPCAUSE(${CHANNEL(name)},tech)}) Remember the incoming leg of the call and the outgoing leg of the call are different channels. Make sure you are giving HANGUPCAUSE the correct channel. On 06/09/2018 02:01 PM, Khalil Khamlichi wrote: > It seems very weird to me
2017 Dec 19
2
asterisk queues in off-hook mode ?
Hi, I am looking to configure asterisk queues in off-hook mode, that is, the agent calls into the system and stays connected to this call, when new customer calls, he is redirected to the queue which should distribute to connected agents. is this possible on teh actual app_queue or we would need to implement it using ARI. Thanks in advance.
2018 May 08
2
multi step auth?
I *am* doing that, as I assumed it would be required just for the 911 mapping we have provided, but that doesn't change the SIP header. Cheers, j On 05/08/2018 02:41 PM, Khalil Khamlichi wrote: > try setting the callerid with > > same => n,Set(CALLERID(all)=17864089672 <17864089672>) > > ofcourse for each customer you will need to provide his own did. > > >
2018 Feb 06
2
Call picked up from queue and transferred gets disconnected - about 0.01% of calls
Hi Guys I have an issue where a call is picked up from a queue. The caller asks the person who answered to attended transfer to extension 3082 (for argument's sake.) 3082 picks up the attended transfer and speaks with the outside caller picked up initially from the queue. A few seconds after 3082 has started speaking to the outside caller - 3082's call goes dead in their
2018 May 08
2
multi step auth?
Hi, We have been using Voxbone for some time for origination, and they now offer E911 services.? We are trying to set this up and having trouble meeting their authentication requirements. I setup a peer as I normally would, with user/pass as they supplied ("lacoursj", "pass"), but my calls are rejected.? Their support is asking that I follow this auth mechanism: 1st step
2014 Oct 13
3
samaba 4 vs active directory
Hello Sir ; I am very interested for samba 4 news and want to run it in production environment to replace active directory But first I appreciate if you could help me to get comparison between active directory feature and samba feature that working correctly I mean if I go to samba which feature may I lose or still have bugs Thanks in advance Kind regards, Ahmed Hassanean Khalil Customer Service
2018 May 08
3
Bilateral matrix
or in base R : ?xtabs ?? as in: xtabs(~previous_location + current_location,data=x) (You can convert the 0s to NA's if you like) Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Tue, May 8, 2018 at 9:21 AM, Huzefa
2017 Jun 15
4
is.null(mylist[1]) and is.null(mylist$a) returns different values
Hi I have a list : mylist <- list( a = NULL, b = 1, c = 2 ) > mylist[1] $a NULL > is.null(mylist[1]) [1] FALSE > is.null(mylist$a) [1] TRUE why? I need to use mylist[1]
2017 Jun 15
1
is.null(mylist[1]) and is.null(mylist$a) returns different values
I find that the str function is more helpful for understanding the difference between a null list and a list containing a null list than the implicit print function call that the interpreter invokes when you enter an expression at the console. str( mylist[1] ) -- Sent from my phone. Please excuse my brevity. On June 15, 2017 8:39:47 AM PDT, Huzefa Khalil <huzefa.khalil at umich.edu>
2005 Feb 18
1
Calls directed via queue to unavailable device result in call acceptance
When working with call queues, if an agent is logged in via AgentCallbackLogin and the extension they are registered at becomes "unavailable" (from a bad connection, or something of the like), calls routed to that extension seemed to be accepted by it, so if the next action for that extension is to go to voicemail, the caller in the queue is sent to the extensions voicemail. Even worse,
2017 Jun 15
0
is.null(mylist[1]) and is.null(mylist$a) returns different values
Hi, Try > is.null(mylist[[1]]) [1] TRUE Notice the double square brackets. From: ?`[` "The most important distinction between [, [[ and $ is that the [ can select more than one element whereas the other two select a single element." On Thu, Jun 15, 2017 at 11:33 AM, ce <zadig_1 at excite.com> wrote: > Hi > > I have a list : > > mylist <- list( a = NULL, b
2018 May 04
0
Converting a list to a data frame
It looks like you made a copy/paste error below. Your ata.frame should be data.frame. Kevin On 05/04/2018 08:18 AM, Bill Poling wrote: > Good morning. > > Novice usR. Here. > > I am following this string, among many, learning as I go. > > Quick question please? > > I thought that perhaps ata.frame was part of the zoo pkg, b/c when I > searched it came up in
2018 May 04
2
Converting a list to a data frame
Good morning. Novice usR. Here. I am following this string, among many, learning as I go. Quick question please? I thought that perhaps ata.frame was part of the zoo pkg, b/c when I searched it came up in help? However, evidently not or I am not using it properly. Please advise, thank you. x <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8)) x2 <- do.call(rbind,
2018 May 16
0
Bilateral matrix
Dear Bert and Huzefa, Apologies for the late reply, my account got hacked and I have just managed to recover it. Thank you very much for your replies and the solutions. Both work well. I was wondering if there was any way to ensure (force) that all possible combinations show up in the output. The full dataset has 25 cities but of course people have not moved from Boston to all the other 24
2003 Aug 07
1
MWI bug ?
Hi Lee, You need to specify the VM context that you are using.. so using your examples.. extensions.conf entry.. exten => 1000,1,Dial(SIP/1000,20) exten => 1000,2,Voicemail2(u1000) exten => 1000,102,Voicemail2(b1000) exten => 1000,103,Hangup should be.. exten => 1000,1,Dial(SIP/1000,20) exten => 1000,2,Voicemail2(u1000@sip) exten => 1000,102,Voicemail2(b1000@sip) exten
2016 Apr 12
0
ggplot2
Hi James, If you want to specify the y-values, you need to use stat="identity" as below: ggplot(probability, aes(x=Fertilizer, y=prob)) + geom_bar(stat="identity", aes(fill=Treatment)) best, huzefa On Tue, Apr 12, 2016 at 1:02 PM, James Henson <jfhenson1 at gmail.com> wrote: > Dear R Community, > > Below is a problem with a simple ggplot2 graph. The code
2016 Apr 12
2
ggplot2
Dear R Community, Below is a problem with a simple ggplot2 graph. The code returns the error message below. Error: stat_count() must not be used with a y aesthetic. My code is below and the data is attached as a ?text? file. # Graph of the probabilities library(digest) library(DT) datatable(probability) str(probability) probability$Fertilizer <- as.factor(probability$Fertilizer)
2018 May 16
2
Bilateral matrix
xtabs does this automatically if your cross classifying variables are factors with levels all the cities (sorted, if you like): > x <- sample(letters[1:5],8, rep=TRUE) > y <- sample(letters[1:5],8,rep=TRUE) > xtabs(~ x + y) y x c d e a 1 0 0 b 0 0 1 c 1 0 0 d 1 1 1 e 1 1 0 > lvls <- sort(union(x,y)) > x <- factor(x, levels = lvls) > y <-
2018 May 08
0
Bilateral matrix
Dear Miluji, If I understand correctly, this should get you what you need. temp1 <- structure(list(id = 101:115, current_location = structure(c(2L, 8L, 8L, 3L, 6L, 5L, 1L, 2L, 7L, 4L, 2L, 8L, 8L, 3L, 6L), .Label = c("Austin", "Boston", "Cambridge", "Durham", "Houston", "Lynn", "New Orleans", "New York"), class =