[asterisk-users] Switchvox vs Asterisk codebase

2010-05-29 Thread Andrew Joakimsen
Does anyone know what version of Asterisk Switchvox uses, and if it is modified in any way? FWIW, I am dealing with a provider that claims compatibility with Switchvox but not Asterisk for their SIP trunking service. -- _ --

[asterisk-users] Connect mobile to asterisk

2010-05-29 Thread Nivin Kumar
Guys,   I would like to connect my blackberry or any other cell phone to asterisk so that I can send calls through the sim card. I would also like to send SMS through this as well. Could someone point me in the right direction?   Thanks, Nivin --

Re: [asterisk-users] DAHDI Help (made a cardinal sin :()

2010-05-29 Thread --[ UxBoD ]--
- Original Message - On Friday 28 May 2010 12:50:19 --[ UxBoD ]-- wrote: - Original Message - You're missing this in your chan_dahdi.conf: #include dahdi-channels.conf Hmm, I changed the signalling as per a previous post and now it is okay. Why is there

Re: [asterisk-users] shared lines (sla) with Asterisk 1.4.26, any hints?

2010-05-29 Thread Jonas Kellens
Giorgio, have you made progress on this topic ? Because I'm interested in this too. Jonas. On 04/15/2010 01:18 PM, Giorgio Incantalupo wrote: Hello, I'm trying to setup shared lines with Asterisk 1.4.26 and Snom phones. It seems that Asterisk works correctly (I get State:

Re: [asterisk-users] Switchvox vs Asterisk codebase

2010-05-29 Thread Nivin Kumar
I think its 1.4 or 1.2 --- On Sat, 29/5/10, Andrew Joakimsen joakim...@gmail.com wrote: From: Andrew Joakimsen joakim...@gmail.com Subject: [asterisk-users] Switchvox vs Asterisk codebase To: Asterisk Users Mailing List - Non-Commercial Discussion asterisk-users@lists.digium.com Date:

Re: [asterisk-users] Connect mobile to asterisk

2010-05-29 Thread Tiago Geada
Hi, In the past I had a sony ericsson connected via usb cable, and used gnokii to interact with it. Then I would use System() in asterisk to call up gnokii. I never tried it but I think asterisk-addons has got a module to use Bluetooth mobile phones. On 29 May 2010 07:01, Nivin Kumar

Re: [asterisk-users] asterisk-users Digest, Vol 70, Issue 63

2010-05-29 Thread vijay kumar
Hi. I have newely installed vicidial now i am getting thise error anyone can hel me. NOTICE[31819]: channel.c:1972 ast_read: Dropping incompatible voice frame on Local/8600...@default-ed7b,1 of format gsm since our native format has changed to slin Regard's Vijay Kumar

Re: [asterisk-users] asterisk-users Digest, Vol 70, Issue 63

2010-05-29 Thread Zeeshan Zakaria
The error is telling you what is happening. Either add/enable SLIN support in asterisk, or enable GSM in vicidial. Zeeshan A Zakaria -- Sent from my Android phone with K-9 Mail. On 2010-05-29 8:25 AM, vijay kumar vijay_...@hotmail.com wrote: Hi. I have newely installed vicidial now i am

Re: [asterisk-users] pri show version still shows old version despite doing a make make clean make install for v1.4.11

2010-05-29 Thread bruce bruce
Hi Guys, Anyone else can comment on this or give me their thoughts please? I just want to know if someone can confirm the output for make install in new LibPRI directory. Thanks, Bruce On Fri, May 28, 2010 at 12:58 PM, bruce bruce bruceb...@gmail.com wrote: Thanks for the input. Yes, I did

Re: [asterisk-users] Conflict between jumper settings and dmesg with?OctoBRI

2010-05-29 Thread Tzafrir Cohen
On Fri, May 28, 2010 at 11:53:34PM +, Andre wrote: Hi! Try this patch. IF you apply it you can tell dahdi the port mode to use like this modprobe wcb4xxp port_mode=0,0,1,1 Thanks for your patch. However: Don't those cards have jumpers that set (that is: hardwire) TE / NT mode? If so,

Re: [asterisk-users] Conflict between jumper settings and dmesg with?OctoBRI

2010-05-29 Thread Ron Arts
Op 29-05-10 17:33, Tzafrir Cohen schreef: On Fri, May 28, 2010 at 11:53:34PM +, Andre wrote: Hi! Try this patch. IF you apply it you can tell dahdi the port mode to use like this modprobe wcb4xxp port_mode=0,0,1,1 Thanks for your patch. However: Don't those cards have jumpers that

Re: [asterisk-users] DAHDI Help (made a cardinal sin :()

2010-05-29 Thread Tzafrir Cohen
On Sat, May 29, 2010 at 08:34:07AM +0100, --[ UxBoD ]-- wrote: I am using Asterisk 1.6.2.7 and that file was generated by dahdi_genconf. Am I safe to remove the file then ? If you don't #include it, yes. The point of it was to provide a separate generated part. But you might as well copy its

Re: [asterisk-users] Conflict between jumper settings and dmesg with?OctoBRI

2010-05-29 Thread Tzafrir Cohen
On Sat, May 29, 2010 at 06:43:19PM +0200, Ron Arts wrote: Op 29-05-10 17:33, Tzafrir Cohen schreef: On Fri, May 28, 2010 at 11:53:34PM +, Andre wrote: Hi! Try this patch. IF you apply it you can tell dahdi the port mode to use like this modprobe wcb4xxp port_mode=0,0,1,1

[asterisk-users] Best way to limit outgoing calls per trunk

2010-05-29 Thread bruce bruce
Hi Guys, I am looking to use System() function along with some bash scripting to determine if a Trunk is being used during certain time of the day or not. Here is what I have in mind. Please guide me if you know a better way: exten = s,1,answer exten = s,n,System(/tmp/check.sh) check.sh: check

Re: [asterisk-users] Best way to limit outgoing calls per trunk

2010-05-29 Thread Zeeshan Zakaria
Should be solid. After all munin also works on the same lines and it works solid. Zeeshan A Zakaria -- Sent from my Android phone with K-9 Mail. On 2010-05-29 5:12 PM, bruce bruce bruceb...@gmail.com wrote: Hi Guys, I am looking to use System() function along with some bash scripting to

Re: [asterisk-users] Best way to limit outgoing calls per trunk

2010-05-29 Thread Jonathan Thurman
On Sat, May 29, 2010 at 2:02 PM, bruce bruce bruceb...@gmail.com wrote: Hi Guys, I am looking to use System() function along with some bash scripting to determine if a Trunk is being used during certain time of the day or not. Here is what I have in mind. Please guide me if you know a better

Re: [asterisk-users] Best way to limit outgoing calls per trunk

2010-05-29 Thread bruce bruce
Thanks for the input. Is there no Asterisk command in dialplan to return true or false or number of channels per trunk rather than going to bash script? And if I do the bash script how can I use sed and awk to search for the right words to see if trunk is in use or not. A bit detail would be

Re: [asterisk-users] Best way to limit outgoing calls per trunk

2010-05-29 Thread Steve Edwards
On Sat, 29 May 2010, bruce bruce wrote: I am looking to use System() function along with some bash scripting to determine if a Trunk is being used during certain time of the day or not. Here is what I have in mind. Please guide me if you know a better way: Using the GROUP/GROUP_COUNT

Re: [asterisk-users] [Dahdi] DAHDI_CHANCONFIG failed on channel 1?

2010-05-29 Thread Tzafrir Cohen
On Thu, May 27, 2010 at 12:29:05PM +0300, Tzafrir Cohen wrote: On Wed, May 26, 2010 at 09:52:52PM +0200, Vincent wrote: On Wed, 26 May 2010 17:30:08 +0200, Vincent codecompl...@free.fr wrote: More information, as I investigate: For those having the same issue, here's what I learned:

Re: [asterisk-users] Switchvox vs Asterisk codebase

2010-05-29 Thread Kevin P. Fleming
On 05/29/2010 01:56 AM, Andrew Joakimsen wrote: Does anyone know what version of Asterisk Switchvox uses, and if it is modified in any way? FWIW, I am dealing with a provider that claims compatibility with Switchvox but not Asterisk for their SIP trunking service. Switchvox 4.x is based on

[asterisk-users] DID's for Chatham, ON

2010-05-29 Thread Robert Augustyn
Can anybody provide DIDs for Chatham, ON? Usage based preferred, but flat-rate is not an issue.     Contact off list.   Thanks for your time,     Sincerely, Robert Augustyn   -- _ -- Bandwidth and Colocation Provided

Re: [asterisk-users] DID's for Chatham, ON

2010-05-29 Thread Scott Stingel
I think there's an Asterisk-Biz mail list for this purpose.. -Scott On 5/29/2010 6:12 PM, Robert Augustyn wrote: Can anybody provide DIDs for Chatham, ON? Usage based preferred, but flat-rate is not an issue. Contact off list. Thanks for your time, Sincerely, Robert Augustyn --