similar to: Integrating With Asterisk

Displaying 20 results from an estimated 120 matches similar to: "Integrating With Asterisk"

2010 Oct 26
5
Mobile Phones and Asterisk
Hi, Is the dev_state can also be used to track a mobile phone's status via SIP? I tried it on several phones(nokia, samsung) but it returns NOANSWER but i can hear a beep beep beep sound indicating that it is currently busy. regards, RYAN ICASIANO
2011 Feb 15
6
Fax Woes
Hi all, I'm trying to get outgoing fax working from an SPA2102 to a PSTN fax machine via a T.38 enabled trunk.? I've got t38pt_udptl = yes faxdetect=no in my sip.conf file.? The ATA has all of the T.38 options turned on, echo cancellation is off, as well as silence suppression off.? The only configured codec is u711.? When the user tries to send a fax, it gets to the point where it
2011 Feb 11
6
On-Hold Music
Hi gang, In 500 words or less (if possible), please explain what is a legal music-on-hold file? My boss hates the stuff provided with the distribution and I figure that I'm asking for trouble if I take my Les Mis tracks and run them through Audacity and SOX to make new files. Thanks in advance Danny Nicholas -------------- next part -------------- An HTML attachment was
2010 May 30
6
How to use one single IP as origination
I have an Asterisk with multiple IP's, on the same subnet. When a call comes in, I need to send it back out via SIP, but need that only one IP is used as originating IP for all calls. For example machines has 192.168.50.3 192.168.50.4 192.168.50.5 .... but when I originate the second leg of a call, the IP address that is supposed to be read as source IP must be 192.168.50.5, regardless of how
2010 May 22
4
US "Truth in caller id act"... and it's impact on services
For the 3rd consecutive term, the US Senate has introduced the "Truth in caller ID Act of 2009". It was passed by the Senate (finally) in January, and has moved to the House for a vote. A lot of states have ambiguous or overly restrictive language on how caller ID may be manipulated. For instance, if you have a PBX, and a call comes in from the PSTN, which you then loop back out
2010 Mar 10
1
Diaplan reload command not working
I am a complete newbie, completed editing the extensions.conf file, having problem reloading my diaplan via asterisk console, tried to reload it with diaplan reload command, but it says command does not exist. Please help _________________________________________________________________ Hotmail: Powerful Free email with security by Microsoft.
2002 Sep 10
1
multiple instances of app each consuming 32 MB . . . (???)
My application starts successfully but if look with ps ax I can see that I have 5 instances of it open: frank@limedes:~ > ps ax |grep wine 17937 pts/2 S 0:02 wine C:\Program Files\C4DNET_R73 PC\C4D_NET_Client.exe 17939 ? S 0:05 wineserver 17940 pts/2 S 0:05 wine C:\Program Files\C4DNET_R73 PC\C4D_NET_Client.exe 17941 pts/2 S 0:00 wine C:\Program
2006 Sep 08
0
SELinux targeted + httpd + suexec
Hi, I have read: http://lists.centos.org/pipermail/centos/2005-March/003429.html, http://fedora.redhat.com/docs/selinux-apache-fc3/sn-using-other-types.html RedHat Selinux Documentation (PDF) (some parts) and they helped me solve a some difficulties, including the necessity to mount /var/www with -o suid. Now I'm getting these 2 errors in /var/log/messages whenever I execute a cgi:
2008 May 06
0
SELinux, postfix and milters
Hi all, I'm trying to add some milters (particularly spamass-milter and clamav-milter, which I acquired through rpmforge) to my postfix configuration on Centos5 with the targeted SELinux policy.. I'm running into difficulty getting postfix to communicate through the unix domain sockets created by the milters, because selinux keeps blocking them. I've attempted to use audit2allow
2006 Apr 05
0
file_column create image on fly
hello, i''ve added version "small" => {:size => "320x240>"} to file_column. But it doesnt create that size image. How to tell file_column to create small image if it doesn''t exist? Thank you -- Posted via http://www.ruby-forum.com/.
2010 Nov 09
3
herky-jerky audio
Just an update, and a follow-up question: I'm making progress on this issue, and will likely have something working very soon, now that I understand how the jspeex transcoding classes work. Unfortunately, I will need to make a couple small changes to the jspeex source code. My question is - is anybody using jspeex for streaming speex-encoded audio? It works great for static audio, but seems
2010 Nov 08
0
[LLVMdev] [LLVMDev] Register Allocation and copy instructions
On Nov 8, 2010, at 12:04 PM, Jeff Kunkel wrote: > Hi, while writing my register allocator, I have come across a case which confuses me because the llvm definition cannot be mapped to machine code. > > For instance I come across (1) and I reduce it to (2). However a copy instruction cannot move from EDX to CX. What mechanics in LLVM will tell me that I cannot make this move during
2010 Nov 09
1
[LLVMdev] [LLVMDev] Reserved Registers
So, there exists registers which are reserved denoted by the Machine Register Info :: getReserved field. I am wondering if these registers are reserved or preserved? I have come across a case where a reserved register was used. Namely it's in "llvm\test\CodeGen\X86\2009-04-27-CoalescerAssert.ll" where the reserved register ESP (54) in block "bb98.fragment" on line 854. Is
2010 Nov 09
1
[LLVMdev] SPEC2k, SPEC06 base configuration for clang/llvm
Hi, what is the recommended base configuration of SPEC2k and SPEC06 for clang/llvm? I got compilation error with eon when using gcc's flags (emit error on converting wchar* ..) -- there must be some portability flags I am missing. Thanks, David -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Nov 09
1
Store CDR (call detail record) to Oracle database
Hi all, Now i want to store cdr (call detail record) to Oracle database but i don't know how to do .Can anyone help me ? Thanks and best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20101109/2fac8686/attachment.htm
2010 Nov 09
1
SMS Gateway
Hi list, Anyone has some guidance in how can I project a SMS gateway with Asterisk. I mean, some good web link,pdf or something like that? Thanks in advanced!!Att, Flavio Roberto Miranda MSN:flaviormiranda at hotmail.com Skype: flaviormirandaru -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Nov 10
2
[LLVMdev] llvm-gcc not compatible with gcc on a small case?
I found a case which gcc can compile while llvm-gcc can not. I'm using the gcc4.1 and the most recent llvm-gcc. Here is the case: template <int N> class T { public: int V; }; T<4> test(T<4> a[4][8]) { return a[3][3]; } llvm-gcc dumped: fail.cpp: In function \u2018T<4> test(T<4> (*)[8])\u2019: fail.cpp:7: error: invalid use of incomplete type
2010 Nov 09
1
[LLVMdev] Design question on implementing OpenMP support
Hello, I had earlier mailed the list[1] about adding OpenMP support to Clang and LLVM Polly. The LLVM Polly wiki page earlier mentioned a design[2] where Clang and LLVM Polly would emit annotations to the code and there would be a seperate pass that would transform the code using these annotations. The issue I see with this approach is that this pass will have to be run immediately after the
2010 Nov 07
2
Asterisk 1.6 (realtime) - Overwritten CallerID(num) Problem
Hello, I am running Asterisk 1.6 with Realtime enabled for my SIP users and peers. The backend is a MySQL database running through the ODBC backend in Asterisk. At this point everything works in terms of phones registering, placing calls between them, etc. However, I am having a problem setting the Caller ID number whenever I am using the Realtime database for the SIP users/peers. If I use a
2010 Nov 08
1
"yum -yq --security check-update" spouting lots of text?
uname -a Linux 2.6.18-194.17.4.el5.centos.plus #1 SMP Tue Oct 26 04:07:11 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux I thought -q meant 'no output'. Recently yum -q has started spewing the following garbage, can anyone tell me why? thanks, Dave # yum -yq --security check-update 2>/dev/null Loaded plugins: fastestmirror, priorities, security Loading mirror speeds from cached hostfile *