search for: interdigitate

Displaying 20 results from an estimated 21 matches for "interdigitate".

2005 Jul 12
3
Cisco 7940/7960 interdigit timeout
Hello list, does anyone know how to change the "interdigit timeout" when using Cisco IP Phone 7940/7960 with SIP-Firmware and Asterisk? it's default value is 15 sec. but i have nothing found to set this in tftp-config file etc. Thanks in advance, Roland
2005 May 24
0
Sipura SPA-3000 call progress, and interdigit delays
Hello, I've been experimenting with Asterisk 1.0.6 and a Sipura SPA-3000, and I've run into a couple of questions I haven't yet found clear answers to: It appears that the SPA-3000 has no call progress on it's FXO interface? Asterisk considers a dial() as answered when the SPA-3000 has dialed the number on the PSTN line, not when someone has answered a phone on the
2008 Nov 01
1
SPA3102 interdigit timers bug?
Hi. I have a SPA3102 updated with with Software Version: 5.1.7(GW). I have this settings on Voice/Regional: Interdigit Long Timer: 10 Interdigit Short Timer: 3 Anyway, when hooking up (without dialing anything), the timeout starts after 3 seconds. It's like the Long Timer is unused. After dialing, the Short Timer is also used to timeout. Is that normal? Am I missing something? Thanks. --
2010 Jul 26
1
Is there a function to interdigitate two columns?
Hello List Inhabitants: I don?t know what this operation is called or if there is a function that does it automatically, hence I seek your help! If I divide a large data collection tasks between two students, and I have a master list of samples, but one student records some of the values, and the other student the remainder, I need to get the two sets of student measurements into one column.
2004 Jul 02
4
Delay when dialing with Sipura 2000
I have a Sipura 2000 working fine, but whenever I dial any extension there is a delay of 5-10 seconds before it starts ringing. However, if I dial the extension and hit the pound key after the number, it goes through right away. Is there any way around this?
2012 Mar 12
1
2 images on one plot
Dear all with image I can plot only one set of values in one plot. Do somebody have any insight how to put those 2 matrices into one picture so that in one cell in image picture are both values from mat[1,1] and mat2[1,1]. mat<-matrix(1:4, 2,2) mat2<-matrix(4:1,2,2) x <-1:2 y <-1:2 image(x, y, mat) image(x, y, mat2) The only way I found is to mix x or y for both matrices let
2006 Mar 08
3
RES: pap2 Dial plan
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3050 bytes Desc: not available Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20060308/3396d198/smime.bin
2003 Jul 18
2
Correct syntax to call using IAX and a different UDP port
Hi, Which is the correct syntax to call using IAX? I have two Asterisk boxes behind a NAT and one of them use the default port 5036 for IAX, the second one use 5038. To call an extension of the first one, the line in extensions.conf is: exten => _9XXX,1,Dial(IAX/user:pass@195.3.32.191/${EXTEN:1}) and for the second one: exten => _8XXX,1,Dial(IAX/user:pass@195.3.32.191:5038/${EXTEN:1})
2004 May 28
0
Problem with digits blending on inbound pulsed digits?
I have a situation where I am receiving DID calls using Immediate Start Pulse signalling on a Loop Start trunk. The line terminates on a Newbridge Mainstreet 3624 channel bank, which provides battery etc. The channel is converted and routed to Asterisk. The lines are configured as follows: /etc/asterisk/zapata.conf ; Channels 1-24 service MainStreet 3624 channel bank context=infrom-did group=1
2004 May 28
0
Problem with digits blending on inbound puls ed digits?
To answer my own question for the record: The relevant timing parameters in zaptel.h are #define ZT_MINPULSETIME (15 * 8) /* 15 ms minimum */ #define ZT_MAXPULSETIME (100 * 8) /* 150 ms maximum default, lowered to 100ms */ #define ZT_PULSETIMEOUT ((ZT_MAXPULSETIME / 8) + 50) And the pulse detecion loop that consumes these parameters begins at line 4866 of zaptel.c The
2005 Feb 28
1
Sipura SPA-841 autodial?
Hei! Does anyone know how to configure this phone to autodial the number after interdigit timeout has passed? Rennes
2009 Dec 19
1
PAP2 Dialing Delay
Possibly OT? I've hooked up a Linksys PAP2 to my Asterisk 1.6 fairly painlessly. The only issue I can't beat with it is the dial delay when calling internal or external numbers. No matter what it seems to take 10 -15 seconds to actually dial. I've altered the device removing all *xx combos and unnecessary waffle and cut the dialplan string to (x.S0) but the problem persists. Anyone
2005 Jul 08
2
Dial 9 to PBX to PSTN pattern question
My question: How do I configure AAH via AMP to make a connection through our legacy PBX to the PSTN? Details: We're trying out Asterisk through Asterisk @ Home. Our legacy PBX has a modem type dial tone port that we hooked a Digium FXO to. Now I can dial from the XTEN client on my computer to any legacy PBX extension. If I connect a regular phone to the modem dial tone port, I can dial
2007 Jan 24
0
NewTopic - Asterisk and Cisco AS5300 via E1/PRI
Hi, I had previously posted about connecting an AS5300 to * via SIP/H323. I got it to work via SIP, but only 1 call at a time would work, and if a user from the * side hung up, the cisco would'nt catch the hangup. I an now trying to hook up to the cisco via E1, with a Sangoma A101 card in my * box. I would like it such that I call from * via E1/PRI to the cisco, and call out via R2 to
2016 Apr 26
0
How to print the frequency table (produced by the command "table" to Excel
Hi jpm miao, You can get CSV files that can be imported into Excel like this: library(prettyR) sink("excel_table1.csv") delim.table(table(df[,c("y","z")])) sink() sink("excel_table2.csv") delim.table(as.data.frame(table(df[,c("y","z")])),label="") sink() sink("excel_table3.csv")
2016 Apr 26
2
How to print the frequency table (produced by the command "table" to Excel
Hi, How could we print the frequency table (produced by "table") to an Excel file? Is there an easy way to do so? Thanks, Miao > df <- data.frame(x = 1:3, y = 3:1, z = letters[1:3]) > table(df[,c("y","z")]) z y a b c 1 0 0 1 2 0 1 0 3 1 0 0 > test<-table(df[,c("y","z")]) > as.data.frame(test) y z Freq 1 1 a
2003 Jun 13
0
send DTMF digits
Hi list, What paremeter can I change to control interdigit timing? Because my PSTN provider aren't receiving all the digits I dialed on Zap/g1. My Zap/g1 are an E1 (E400P) using E&M immediate sigalling. thanks in advance Eduardo
2005 Jul 07
1
How to slow down dialing
I would like to know if it is possible to slow down the dialing process in asterisk. I have 4 of my 8 phone lines that are VoDSL. When we try and dial out these 4 VoDSL Lines, the number is often miss dialed, or incomplete. I added a wait before Asterisk tries to dial the whole number, but that has not solved my problem. If I use a regular phone and dial out these lines, they work fine. My
2006 Oct 29
1
Linksys PAP2: calling tone stops after 5 tones
Hi all, I have a problem with the dialing tone in PAP2: When making a call, I can hear the calling tone 5 times and then it stops. The called party still hears the call but not the calling party. I've playing around with different parameters on the PAP2 web config with no success until now. Anyone has seen the same probelm? Thanks, Jose
2010 Jun 16
1
Blind transfer feature
Hi, Am running 1.4.18 at the moment, and am trying to implement inline blind transfer. I have : [featuremap] blindxfer => *6 ; Blind transfer in features.conf And in extensions .conf under [globals] : DYNAMIC_FEATURES=automon#blindxfr So what am I missing ?? Have read through http://www.voip-info.org/wiki/view/Asterisk+config+features.conf Thanks,