similar to: Asterisk Integration

Displaying 20 results from an estimated 800 matches similar to: "Asterisk Integration"

2004 Jun 15
5
building asterisk
I am trying to build asterisk and having an odd problem compiling it. I got the source this morning from CVS with "make update". I then did a "make", but I'm getting errors in app/app_voicemail.c... On line 155 begins a section which almost looks like patch material. The first line is: <<<<<<< app_voicemail.c and then there is some C code
2008 Aug 15
2
DID's needed for Reston Virginia - + hosted asterisk
I've just started consulting for a SME client based in Reston Virginia. They don't know it yet but they are going to need a hosted asterisk service and some DID's. Email me if you are able to provide 10 DID's in Reston (must be able to be ported away!!) and hosted Asterisk with end user configurable IVR etc. Probably only 5-8 users at the moment BUT... they'll be
2008 Aug 16
0
Basic outbound calling issue : a lot closer
I get congestion (same error) with exten => _NXXNXXXXXX,1,Dial(SIP/${EXTEN:1}@xxx.xxx.xxx,30,r) not dialing 1 exten => _1NXXNXXXXXX,1,Dial(SIP/${EXTEN:1}@xxx.xxx.xxx,30,r) dialing 1 exten => _91NXXNXXXXXX,1,Dial(SIP/${EXTEN:1}@xxx.xxx.xxx,30,r) dialing 9 All the same == Parsing '/etc/asterisk/sip_notify.conf': Found -- Executing [9544790554 at To_Airspring:1]
2004 Apr 03
0
Grandstream and codec G.711
Dunno why your phone isn't allowing you do negotiate g711u but I can tell you how to upgrade the firmware. I called them on Thursday for myself and they gave me the following tftp server address for which to program my phone. 4.3.153.50 Load this into your phone's tftp area and reboot it. It'll go out to the net and check the firmware revision and change it if required. I've done
2005 Oct 14
2
Fortran?
In a package, i type a function name and got the following message: ... tmp <- .Fortran("master", x = as.double(x), y = as.double(y), sort = as.logical(sort), rw = as.double(rw), npd = as.integer(npd), ntot = as.integer(ntot), nadj = integer(tadj), madj = as.integer(madj), ind = integer(npd), tx = double(npd), ty = double(npd),
2011 Nov 21
2
errors with lme4
Dear list, i'm a new R user, so I apologize if the topic is already being addressed by some other user. I'm trying to determine if the reproductive success of a species of bird is related to a list of covariates. These are the covariates: ? elev: elevation of nest (meters) ? seadist: distance from the sea (meters) ? meanterranova: records of temperature ? minpengS1: records
2005 Feb 16
3
How can i send the same traffic to 2 different interface
Hi! I am making some tests here, and i wanna miror all the traffic going to a ip from one interface to another ip. example: all packets going to 64.223.167.100 should be transmitted by ppp0 to internet and by eth2 to the adress 192.168.1.100. Someone know how can i do it using iptables or ip route/ip rule? Tks in advance! Fernando Favero _______________________________________________ LARTC
2003 Feb 27
5
Weird..
I have a machine with 'samba + winbind' installed ... everything works fine. its my beta-machine.. so i used norton ghost to clone it to another computers, and as usual it works good, so i decided to do it with 5 machines. at the end of the procedure i changed the ip of each one and the netbios name.... so i have 5 cloned machines with 'winbind+samba' and thats good.. but if i
2007 Aug 16
2
[LLVMdev] Changing basic blocks
On Wed, 15 Aug 2007, [ISO-8859-1] Em�lio Wuerges wrote: > -- > int total = BB->size(); > std::vector<MachineInstr*> positionmap(total); > for (int i = 0; i< total; ++i) > positionmap.push_back(BB->remove(BB->begin())); > for(int i = 0; i< total; ++i) > BB->push_back(positionmap[i]); > -- This doesn't do what you think. This line:
2002 Dec 13
2
Some doubts
Hi, I'm trying to setup samba server on FreeBSD-4.7-STABLE, with samba version 2.2.7a. It runs so good (better than our snap server :). I need to know if should be possible, that users can modify, save, and all other possible operations on files except delete it. My users config are, more or less: All users have their uid All users are in same gid Some project admins (they are on
2004 Mar 31
3
Voicemail Options
How do I set configure my voicemail notification so that when I'm left a voicemail message it: 1) sends an e-mail to my inbox with the voicemail message attached 2) sends a message to my cellphone without the message attached I get notifications when I've got attachments turned off, but my cell doesn't like attachments in the messages and doesn't send them. An even better
2007 Aug 17
0
[LLVMdev] Changing basic blocks
Yup, You are right. That exploded. I missed some lines in between. there was a .reserve(total) in the actual code. But, there is some side effect I still could not find. 2007/8/16, Chris Lattner <sabre at nondot.org>: > > On Wed, 15 Aug 2007, [ISO-8859-1] Emílio Wuerges wrote: > > -- > > int total = BB->size(); > > std::vector<MachineInstr*>
2003 Jan 29
1
Winbind Problems and doubts
Greetings from Brazil, 1) I installed winbind and everything seems good, but i have kde installed and i'm trying to run windowmaker.. if i choose 'failsafe' or log into the black terminal it runs ok.. but when i try to log into the windowmaker.. it does not log in... what should i do ? 2) how can i login with the local accounts (root and others) while winbind is running ? i can only
2003 Jan 28
4
auto creating home dirs
when someone log into a linux box.. with win2k accounts.. it needs a home dir.. which is not created.. how can i make it creates by itself ? i have more than 1000 users.. i need something better then mkdir :) thanx in advance
2004 Oct 05
1
Efficient way to login/logoff users
Hi there, I have a network running win9x/2000 machines, connected to a samba server with ldap autentication. I wanna know if there's way to receive information about login(principally logoff) in a fast way.. The WIN machines take a long time to send the logoff message (about 2-3min). I was thinking in running a program every time the users login and logoff, this program could send a
2007 Aug 10
2
[LLVMdev] Changing basic blocks
For adding the nop: TII->insertNoop(*BB, BB->end()); 2007/8/9, Chris Lattner <sabre at nondot.org>: > > On Thu, 9 Aug 2007, [ISO-8859-1] Emílio Wuerges wrote: > > I too believe it should not be complicated. > > But I was not being able to do it. > > Finally, after some thinking (and tinkering), this worked like a charm: > > > > MachineInstr* mi =
2005 Mar 31
3
Error when add Samba 3.0.10-1.fc3 to Windows NT Domain
I am trying to install a File server using samba on a NT 4.0 domain. I will call the domain DOMAIN, the pec PDC, the samba file server SAMBA, and so on... :D The linux is an updated Fedora Core 3, and the samba version is 3.0.10-1.fc3 I used SWAT to configure. Here is some lines of my smb.conf: workgroup = DOMAIN server string = SAMBA interfaces = eth security = domain Then i looked on the
2002 Jul 22
2
rSync on RTOS
Hi All, I need one information How much effort is required to port the the rSync utility to any of the RTOS available? (how much is the linux dependent code in the implementattion?) regards Thanks in Advance Biju -- Biju Perumal HCL Technologies Ltd. Voice +91-44-3728366 (Xtn-1134) http://san.hcltech.com
2005 Apr 26
8
Problems with unicode filenames
I have a file server with windows and I am creating a new Fedora Core 3 + Samba 3.0.10-1.fc3 file server... But i have many, many files that have chars like ?, ?, ? in their name... When I move the files to the Samba server, all that unicode chars are changed to ? I need a solution for that to move on, because my boss will not like to stop using that chars... Thanks for any help Cristian
2007 Aug 09
4
[LLVMdev] Changing basic blocks
Hi Tanya and everybody, Ty for your support. I too believe it should not be complicated. But I was not being able to do it. For instance, I tried to run this code below: BB->push_back(&(BB->front())); BB->pop_front(); But it did not work (kinda obvious why). Nor this: BB->push_back(BB->begin()); BB->pop_front(); But also did not work. It seams the same