similar to: Just saw your [Asterisk] xJack Segfault in Asterisk

Displaying 20 results from an estimated 1000 matches similar to: "Just saw your [Asterisk] xJack Segfault in Asterisk"

2005 Mar 22
7
Rhino Channel Bank or ADIT 600
I am forklifting a Merridian option 51c with 112 Nortel Digital Handsets and 400 analog units. For the analog units I have quotes for 9 ADIT 600 48 port fxs units and 17 Rhino 24 port FXS channel banks. I have used neither. Which is the best choice? The price difference is not that great. I am looking at Citelinks 24 port Handset Gateway for the Nortel Digital units. (Any other suggestions
2004 Dec 01
1
some infos
Hello all, I am looking for a solution where people can use Asterisk as an answering machine where with a password they can post voice message to a server in mp3 format. It's for journalists that they are far from the office ''like correspondents'' can put their job for the final diffusion server. Do you think Asterisk can do this job (I think yes, but not sure)
2006 Feb 21
1
Asterisk and T38 Fax
How can I get asterisk to work with faxes in my configuration? I have a WAN with Asterisk at the centre and Mediatrix 1104 gateways at the end nodes providing tone to legacy PBX's and fax machines. The Asterisk is connected to the PSTN via a Digium single port t1. The end nodes are connected via frame-relay 128kbps links. I want to use g.729 between the end nodes and the Asterisk box at
2006 Apr 16
0
What is Multi-layered-Access control
Many PBX's based on the Asterisk code refer to this in their feature list. Its taken off of the Asterisk.org site. Where is this used in Asterisk? Is it in the extensions.conf, is it used when logging into the console, where? How is it used? Is this referring top contexts in the dial plan? Message: 1 >Date: Thu, 13 Apr 2006 23:30:24 -0400 >From: "Rusty Dekema"
2004 Jul 16
6
Asterisk + NEC Electra Elite IPK Integration
Hi, I'm am currently in the process of trying to integrate an * box with an NEC Electra Elite IPK. Currently, we have 7 POTS lines coming into our building. These lines are plugged into our NEC using the appropriate analog line interface card from NEC. The NEC effectively has NO configuration done to it, other than to make all the internal phones ring when a call comes in. We also
2004 Dec 06
5
two questions
Hi people, question one i see that asterisk is now in 1.x release. having tried it in the past i want to know if i can use a voice modem as an outgoing line. i know in the past that was not possible/supported so im just asking in case the option is now available. question two im planing to use asterisk as a pure voip solution with sip phones and h323 phones no need for digium/dialogic hardware
2004 Dec 01
1
[OT] [slightly] app lever vs driver level implementation...
I recently posted a message about an interesting dilemma which I could not figure out. After doing a whole lot more digging I think I have figured out part of what is going on. The parking app is implemented as an app, ie can be called from extensions.conf) but if you look really closely, it is also implemented in each channels driver (handler, whatever you want to call it) and those
2006 Jun 08
2
hangup lag causing the answering of already answered calls
I have a TDM-400P with one FXO module. On an incoming call, I have set Asterisk to dial my phone (exten => s,1,Dial(IAX2/carey)), which is basically the only thing in my dialplan. When the call is answered by the PSTN phone first, or when the ringing call is hung up, Asterisk keeps ringing for 5+ seconds, which causes trouble (the answering of already answered calls). I noticed in the
2004 Dec 07
1
Ringing multiline phone
Is there a way to ring selective line on multi-line phone. For example if I'm on the phone talking internally on line 1 and the calls comes-in the line 2 will automatically ring. The phone P104 allow extension to be assign each line. Is there a way to call certain line (example line 3) on multi-line phone instead of line 1 when the phone is not busy? For example the Sip phone P104 has
2004 Dec 07
1
Inoming caller id withheld, move to new context, possible?
Hi, now I've got caller id working on my BT line in the UK, I'd like to play a different message to those pesky sort who with hold their outgoing number. How can I do this in my extensions.conf for my [incoming-analog] context? I realise some people may call who are unable to change the way that their system withholds the outbound number, so I'll give them chance to leave a voice
2004 Dec 13
2
Incoming Toll-Free
Sorry if this is the wrong list... I need a toll-free number to be delivered to me on IAX. (This is NOT an existing number need to buy the whole service.) Anyone know of a service provider offering this? -Mark 707-735-1038
2005 Jan 14
1
gotoiftime - different hours
If I have different opening hours on different days, can I accomodate that in a single gotoiftime, or will I need to filter them out one by one ? For example, our hours are Mon-Fri 9:00-17:00 and Sat 09:00-13:00 can this be done something like GotoIfTime([9:00-17:00|mon-fri][9:00-13:00|sat]|*|*?open,s,1) or something like that, or do I have to do:
2007 May 12
20
[Bug 10920] New: glxgears on AGP 10de0028 NV5 [RIVA TNT2/TNT2 Pro] works! (but slowly)
http://bugs.freedesktop.org/show_bug.cgi?id=10920 Summary: glxgears on AGP 10de0028 NV5 [RIVA TNT2/TNT2 Pro] works! (but slowly) Product: xorg Version: 7.2 Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2008 Aug 29
16
[Bug 17357] New: NV4B 10DE: 0393 funny stripes in video flash when using nouveau
http://bugs.freedesktop.org/show_bug.cgi?id=17357 Summary: NV4B 10DE:0393 funny stripes in video flash when using nouveau Product: xorg Version: unspecified Platform: Other OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2017 Sep 22
3
Subset
Super, Thanks On Fri, Sep 22, 2017 at 4:57 PM, Boris Steipe <boris.steipe at utoronto.ca> wrote: > > a <- c("<0.1", NA, 0.3, 5, "Nil") > > a > [1] "<0.1" NA "0.3" "5" "Nil" > > > b <- as.numeric(a) > Warning message: > NAs introduced by coercion > > b > [1] NA NA 0.3
2017 Sep 25
2
Subset
myDF <- data.frame(a = c("<0.1", NA, 0.3, 5, "Nil"), b = c("<0.1", 1, 0.3, 5, "Nil"), stringsAsFactors = FALSE) # you can subset the b-column in several ways myDF[ , 2] myDF[ , "b"] myDF$b # using the column, you make a logical vector ! is.na(as.numeric(myDF$b)) # This can be used to select the
2007 May 04
39
[Bug 10858] New: glxgears with mesa-git on PCI 10de0322 (NV34) GeForce FX 5200 crashes X
http://bugs.freedesktop.org/show_bug.cgi?id=10858 Summary: glxgears with mesa-git on PCI 10de0322 (NV34) GeForce FX 5200 crashes X Product: xorg Version: 7.2 Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2004 Oct 05
1
Phantom calls on FXO
I'm getting these "calls" at 16 and 46 minutes after every hour. The SIP phone rings, and if we pick up, we get a dial tone. If we don't pick up, we get the dial tone in a voicemail message. An analog phone connected to the incoming POTS line doesn't ring (whether or not * remains connected to the line). It's like the horror movie where the babysitter is getting
2017 Sep 25
0
Subset
Hi, Lets say this was a dataframe where I had two columns a <- c("<0.1", NA, 0.3, 5, "Nil") b <- c("<0.1", 1, 0.3, 5, "Nil") And I just want to remove the rows from the dataframe where there were NAs in the b column, what is the syntax for doing that? Thanks in advance On Fri, Sep 22, 2017 at 5:04 PM, Shane Carey <careyshan at
2007 May 12
10
[Bug 10933] New: nouveau defaults to first graphics card in system even when xorg instructed differently
http://bugs.freedesktop.org/show_bug.cgi?id=10933 Summary: nouveau defaults to first graphics card in system even when xorg instructed differently Product: xorg Version: 7.2 Platform: Other OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau