similar to: CallerID over IAX

Displaying 20 results from an estimated 11000 matches similar to: "CallerID over IAX"

2004 May 25
3
Telus: Overseas calling
Hi, We ran into a little problem recently with our phone provider (Telus Canada): we are unable to dial numbers outside North America. This is what happens: the phone number 011... is sent out over our T1, Telus sees the correct number on their switch. However the switch thinks it's a North American phone number (and thus has to have 10 digits) and rejects the overseas number as
2004 Dec 30
1
Weird..bridging to Zap channel FXS instead of bridging to PSTN FXO on outgoing group
Hi All, Channels 25-28 on a customers PBX are regular Zaptel FXO cards that are hooked into 4 incomming phone lines. They are all in a group to do automatic rollover for outgoing calls (if channel 25 is being used, dial on channel 26, etc.). Sometimes when a user is dialing a number, instead of bridging to one of the FXO cards it goes and rings to Zap/1-1. This doesnt occur all the time but some
2003 Dec 12
4
Simultaneous incoming calls
Hi, This is our test setup: 4 phones, 2 logged into the one queue, the other 2 phones are used to dial into the queue. If there are 2 calls coming into the queue at the same time, we would like to have the 2 queue phones ringing at the same time (one for each call). But as it is, the 2nd phone only starts ringing after the first one was picked up. Scenario: One of the non-queue phones dials
2007 Apr 16
6
BSNL caller ID (India)
Has anyone figured out the way of getting the caller id for BSNL on Asterisk 1.4.2 I have tried following link http://bugs.digium.com/view.php?id=6683&nbn=24 but was not able to get it, although did not ge any error too. I always get the caller id as asterisk. Can someone please help. Regards, Sanjay Rajdev
2013 Jul 15
2
linking modules - add needed libraries
Hi Hopefully this is the correct mailing list. Sorry if not. I am still fighting to install "shiny" on Solaris OS. For this I need the package 'httpuv' which makes troubles during linking. R version 3.0.1 (2013-05-16) -- "Good Sport" is working well. The compile steps result is below. I have more a general question. The problem is clear: The symbol
2009 Mar 01
1
SPSS repeated interaction contrast in R
dear all, i'm trying to reproduce an spss-anova in R. It is an 2x3x3 repeated measures desingn with repeated contrasts. In R i've coded a contrast matrix for all factors and made a split in the aov summary - but I can't get the repeated interaction contrasts. The output from SPSS looks like this: TaskSw * CongNow * CongBefore: SS df Mean Square F Sig. 1 vs. 2 1 vs. 2 1 vs. 2
2016 Jul 02
2
[PATCH 2/6] drm/nouveau/core: make use of new strtolower() function
On Fri, Jul 1, 2016 at 8:50 AM, Markus Mayer <mmayer at broadcom.com> wrote: > Call strtolower() rather than walking the string explicitly to convert > it to lowercase. > > Signed-off-by: Markus Mayer <mmayer at broadcom.com> > --- > drivers/gpu/drm/nouveau/nvkm/core/firmware.c | 7 +------ > 1 file changed, 1 insertion(+), 6 deletions(-) > > diff --git
2016 Jul 02
1
[PATCH 2/6] drm/nouveau/core: make use of new strtolower() function
On 1 July 2016 at 18:18, Alexandre Courbot <gnurou at gmail.com> wrote: > On Fri, Jul 1, 2016 at 8:50 AM, Markus Mayer <mmayer at broadcom.com> wrote: >> Call strtolower() rather than walking the string explicitly to convert >> it to lowercase. >> >> Signed-off-by: Markus Mayer <mmayer at broadcom.com> >> --- >>
2016 Jul 01
2
[PATCH 1/6] lib: string: add function strtolower()
On Fri, 01 Jul 2016, Markus Mayer <mmayer at broadcom.com> wrote: > Add a function called strtolower() to convert strings to lower case > in-place, overwriting the original string. > > This seems to be a recurring requirement in the kernel that is > currently being solved by several duplicated implementations doing the > same thing. > > Signed-off-by: Markus Mayer
2001 May 11
2
Application Crashes When Calling ov_time_seek() function
I’m running into a problem with my application crashing when I make a call to the ov_time_seek() function. The call includes the OggVorbis_File and it is indeed seekable, as I first check that using the ov_seekable() function. Everytime, however I try to seek forward, the application dies with a core dump. I’m working with the example from the “VorbisFile Documentation” site. The application
2006 Jun 26
1
[Fwd: [Fwd: Re: : Win XP Client does not remove directories]]
Hi @all, Can someone please just confirm me, that Samba doesn't remove a directory in case of a "SET_FILE_INFO"-Request for this directory? The following abstract is out of an Ethereal-Log and shows a SET-FILE-INFO-Request for a directory: ############################################################################ No. Time Source Destination
2012 Apr 11
2
Problems with Apple Mail and attachments
Hello, has anyone experiences with the Apple mail client, to be precise : Mail 5.2? When I copy a message with an attachment from the inbox to a different folder using 'move' or 'copy' , Apple Mail does not properly display the attachment in the new folder. When I copy the same message using 'archive' the attachment shows up properly. There is no difference on the
2008 Apr 08
3
DO NOT REPLY [Bug 5380] New: %M in log format converts following spaces into '-'
https://bugzilla.samba.org/show_bug.cgi?id=5380 Summary: %M in log format converts following spaces into '-' Product: rsync Version: 3.0.2 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy:
2016 Jun 30
6
[PATCH 0/6] lib: string: add function strtolower()
This series introduces a new generic function strtolower(), which converts strings to lowercase in-place, overwriting the original string. This kind of functionality is needed in several places in the kernel. Right now, everybody seems to be implementing their own copy of this function. So, we replace several custom "strtolower" implementations with this new library function. Another
2010 Apr 09
1
Callerid over IAX Trunks
Hello everyone, I'm fairly new to asterisk and this list. Currently I'm working on IAX trunks to send/receive calls between 2 asterisk boxes with asterisk 1.6.1.1+asterisk gui 2.0. After some work in the gui, two boxes can send/receive calls to/from the other just fine, the only problem I have is the caller id. Here is my setup: 1. on both boxes, I added an IAX user in the gui, say the
2016 Jul 09
2
[PATCH v3 1/7] lib: string: add functions to case-convert strings
On 08/07/16 23:43, Markus Mayer wrote: > Add a collection of generic functions to convert strings to lowercase > or uppercase. > > Changing the case of a string (with or without copying it first) seems > to be a recurring requirement in the kernel that is currently being > solved by several duplicated implementations doing the same thing. This > change aims at reducing this
2016 Jul 11
2
[PATCH v3 1/7] lib: string: add functions to case-convert strings
On 9 July 2016 at 08:30, Markus Mayer <markus.mayer at broadcom.com> wrote: > On 9 July 2016 at 05:04, Luis de Bethencourt <luisbg at osg.samsung.com> wrote: >> On 08/07/16 23:43, Markus Mayer wrote: >>> Add a collection of generic functions to convert strings to lowercase >>> or uppercase. >>> >>> Changing the case of a string (with or
2012 Dec 30
2
VGA Passthrough (NVIDIA) - current status?
Hi everyone, Sorry if this gets asked over and over again, but I just joined the list and wanted to ask what the current status of the VGA-passthrough possibilities is. Today I set up my new workstation that has a Kepler card in it and compiled XEN 4.2.1 on Ubuntu 12.04. The first problem I ran into was that the system just hung up after the login screen, which (after quite some google-research)
2007 Apr 23
1
Package installed, functional but not available
Hello, when I run packageStatus(), I get the following results: > packageStatus() Number of installed packages: ok upgrade unavailable /home/fernando/my_library 38 0 1 /usr/local/lib/R/library 28 0 0 Number of available packages (each package/bundle counted only once): installed
2016 Jul 05
3
[PATCH v2 0/7] lib: string: add functions to case-convert strings
On 5 July 2016 at 15:14, Joe Perches <joe at perches.com> wrote: > On Tue, 2016-07-05 at 13:47 -0700, Markus Mayer wrote: >> This series introduces a family of generic string case conversion >> functions. This kind of functionality is needed in several places in >> the kernel. Right now, everybody seems to be implementing their own >> copy of this functionality.