[Asterisk-Users] TE410P: Double/missed interrupt detected

2003-10-03 Thread Ken Godee
Any ideas on the following? (CVS 10/01/2003) Only reference I could find was a Zaptel change log update... 2003-09-02 18:23 martinp * wct4xxp.c (1.6): Get rid of the Double missed interrupt message every time you load the driver and an email refering this to serial console usage. Something I shoul

Re: [Asterisk-Users] Job Opening at Digium

2003-10-03 Thread Dave Cotton
Even Birmingham UK is not near enough :( -- Dave Cotton <[EMAIL PROTECTED]> ___ Asterisk-Users mailing list [EMAIL PROTECTED] http://lists.digium.com/mailman/listinfo/asterisk-users

[Asterisk-Users] starting asterisk?

2003-10-03 Thread Ken Godee
I'm trying to figure out how to start *. Rh7.3,CVS,TE410P,TA750 If I just try the way the docs spell it out "/usr/sbin/asterisk -vvvc" it fails.. /var/log/asterisk/messages Oct 3 22:23:34 WARNING[1024]: File chan_zap.c, Line 610 (zt_open): Unable to open '/dev/zap/channel': No such devi

[Asterisk-Users] Good W2K softphone

2003-10-03 Thread Chris Albertson
I haven't found any open source/freeware software phones that run under Windows 2000 that I like or that even work well. What are other people using? = Chris Albertson Home: 310-376-1029 [EMAIL PROTECTED] Cell: 310-990-7550 Office: 310-336-5189 [EMAIL PROTECTED] KG6OMK

Re: [Asterisk-Users] Job Opening at Digium

2003-10-03 Thread Richard Lyman
maybe just have a 'first line' TS that's vitual, if that does become an option. lord, knows that's been done before. Mark Spencer wrote: May I ask the reason for the Tech Support person needing to be in Huntsville? Wouldn't it be simple to have the person "Virtually There" with Asterisk?

Re: [Asterisk-Users] Answer on second ring - need it on first.

2003-10-03 Thread Martin Pycko
take out usecallerid=yes in zapata.conf Martin On Sat, 4 Oct 2003, Richard Scobie wrote: > After some months of "Make updates", I have just deleted my Zaptel and > Asterisk source directories and done "cvs checkout" 's of asterisk and > zaptel, in order to clean up the trees. > > After re-insta

Re: [Asterisk-Users] Job Opening at Digium

2003-10-03 Thread Mark Spencer
> May I ask the reason for the Tech Support person needing to be in > Huntsville? Wouldn't it be simple to have the person "Virtually There" > with Asterisk? I thought about that. In principle they could be anywhere, but in practice, it's often more productive when people are together and you ca

Re: [Asterisk-Users] Job Opening at Digium

2003-10-03 Thread Chris Tooley
May I ask the reason for the Tech Support person needing to be in Huntsville? Wouldn't it be simple to have the person "Virtually There" with Asterisk? Chris On Fri, 2003-10-03 at 17:50, Mark Spencer wrote: > Hello Asterisk users and developers! I wanted to let you all know that > Digium is hir

[Asterisk-Users] Editting variable contents

2003-10-03 Thread Robert Hajime Lanning
ChanIsAvail returns the channel ID plus "-". How can I edit ${AVAILCHAN} to remove this session ID, so I can use its contents in a subsequent Dial statement? Dialing on Zap just gives a warning, but dialing a SIP channel completely errors out. -- extensions.conf snippet- ; ; Main

Re: [Asterisk-Users] monitoring the asterisk and safe restart

2003-10-03 Thread Leif Madsen
[EMAIL PROTECTED] wrote: Hi List, I am sorry that I may bring the old question to the community. My question is 1. How can we determine if asterisk is working normally or not ? what kind watchdog process do we have at this moment ? 2. In case the running asterisk is mulfucntion, is there any avai

Re: [Asterisk-Users] Job Opening at Digium

2003-10-03 Thread Leif Madsen
Mark Spencer wrote: Hello Asterisk users and developers! I wanted to let you all know that Digium is hiring for a full-time technical support position. This job includes: * Benefits * Working with Open Source Software * Lots of opportunity for advancement and growth * Working directly with M

Re: [Asterisk-Users] Iconnect Incomming calls

2003-10-03 Thread Brian Capouch
Glenn Dalgliesh wrote: I have an IconnectHere account with a Inbound number and have setup the sip.conf to register and am recieving the call but When I answer the call it disconnect. I have tried sending the call to from * to a Softphone, Pingtel, and FXS port and all result the same. As soon a

Re: [Asterisk-Users] 802.11 phone review: WiSIP

2003-10-03 Thread Steven Critchfield
On Fri, 2003-10-03 at 20:11, Masakazu Nakano wrote: > I found it. but that webite is chinese BIG-5. take care. > > http://www.mpn.com.tw/index-big5-PRODUCT.html > > and that already released by Fujitsu. > > http://www.net-2com.com/jp/product/hw/wireless_ipphone/ Actually, this is the one I was

[Asterisk-Users] No Ringback on Iconnect

2003-10-03 Thread Kevin
When I place a call using Iconnecthere or Nikotel as my sip provider, I hear no ringback when making a call.  I do see call progress in the console.  Does anyone else have this problem or offer any suggestions?  Thanks, Kevin  

RE: [Asterisk-Users] CDR Web Search Frontend

2003-10-03 Thread Jamie Carl
*This message was transferred with a trial version of CommuniGate(tm) Pro* Has been fixed.. This is what happens when you don't pay your bills.. :( J > -Original Message- > From: PJ Welsh [mailto:[EMAIL PROTECTED] > Sent: Friday, 3 October 2003 12:52 AM > To: [EMAIL PROTECTED] > Subje

[Asterisk-Users] Answer on second ring - need it on first.

2003-10-03 Thread Richard Scobie
After some months of "Make updates", I have just deleted my Zaptel and Asterisk source directories and done "cvs checkout" 's of asterisk and zaptel, in order to clean up the trees. After re-installing, I am finding that when dialling into an X100P, that Answer is now answering on the second r

Re: [Asterisk-Users] 802.11 phone review: WiSIP

2003-10-03 Thread Masakazu Nakano
I found it. but that webite is chinese BIG-5. take care. http://www.mpn.com.tw/index-big5-PRODUCT.html and that already released by Fujitsu. http://www.net-2com.com/jp/product/hw/wireless_ipphone/ mack_jpn On Fri, 03 Oct 2003 19:03:10 -0500 Steven Critchfield <[EMAIL PROTECTED]> wrote: > On

Re: [Asterisk-Users] monitoring the asterisk and safe restart

2003-10-03 Thread Chris Albertson
Off the top of my head maybe something like this? while(1) asterisk wait `cat /var/run/astrisk.pid` sleep 1 end Looking at the above it could be improved, like checking for the /var/run/astrisk.pid file before the wait and bailing out if not found. --- [EMAIL PROTECTED] wrote: > Hi

Re: [Asterisk-Users] Small problem with FAX and Modem.

2003-10-03 Thread Nicholas Romero
That would be a little more ideal but the way in which the faxes pass though the system the both the port/channel and the destination are dynamic. There are some special situations that I have some modems that are dialed enough that they are specified. These specific destinations go to another con

Re: [Asterisk-Users] Voice detection

2003-10-03 Thread Christian Hecimovic
dsp.c has silence detection that works quite well for detecting end-of-voice silence. It is used to allow only a certain amount of silence at the end of voicemails, for instance. See app_voicemail2.c on how to use it, specifically the function play_and_record(). Note that the silence threshold (

Re: [Asterisk-Users] 802.11 phone review: WiSIP

2003-10-03 Thread Steven Critchfield
On Fri, 2003-10-03 at 18:09, John Todd wrote: > Hello - >Here's my first impression review of the first SIP 802.11 phone. I > got my hands on the "first" one sold, so that perhaps makes me the > first person to have a real 802.11 SIP phone commercially in the US > interworking with Asterisk

[Asterisk-Users] monitoring the asterisk and safe restart

2003-10-03 Thread glin
Hi List, I am sorry that I may bring the old question to the community. My question is 1. How can we determine if asterisk is working normally or not ? what kind watchdog process do we have at this moment ? 2. In case the running asterisk is mulfucntion, is there any available way to auto restart

RE: [Asterisk-Users] Help with GPL license of Asterisk

2003-10-03 Thread Mark Spencer
The anti-patent clause was dropped ages ago. Mark On Fri, 3 Oct 2003, Uriel Carrasquilla wrote: > So, is Astrisk being changed to an OSI-compliant license without the > "anti-patent" clause? > Uriel > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Ja

Re: [Asterisk-Users] 802.11 phone review: WiSIP

2003-10-03 Thread Brancaleoni Matteo
nice review! how about call hold & transfer ? they works? and what type of transfer is supported? Matteo. Il sab, 2003-10-04 alle 01:09, John Todd ha scritto: > Hello - >Here's my first impression review of the first SIP 802.11 phone. I > got my hands on the "first" one sold, so that perhap

RE: [Asterisk-Users] Help with GPL license of Asterisk

2003-10-03 Thread Uriel Carrasquilla
So, is Astrisk being changed to an OSI-compliant license without the "anti-patent" clause? Uriel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jan Rychter Sent: Thursday, October 02, 2003 2:27 PM To: [EMAIL PROTECTED] Subject: Re: [Asterisk-Users] Help with

[Asterisk-Users] 802.11 phone review: WiSIP

2003-10-03 Thread John Todd
Hello - Here's my first impression review of the first SIP 802.11 phone. I got my hands on the "first" one sold, so that perhaps makes me the first person to have a real 802.11 SIP phone commercially in the US interworking with Asterisk. Whee! Can someone point me to other commercially shi

Re: [Asterisk-Users] Small problem with FAX and Modem.

2003-10-03 Thread Martin Pycko
What if you separate the fax machine channels to diffrent contexts that don't call application Monitor ? It's for outgoing calls and for incoming calls if you have certain extensions for faxes you can call StopMonitor application. regards Martin On Fri, 3 Oct 2003, Nicholas Romero wrote: > Is th

[Asterisk-Users] Job Opening at Digium

2003-10-03 Thread Mark Spencer
Hello Asterisk users and developers! I wanted to let you all know that Digium is hiring for a full-time technical support position. This job includes: * Benefits * Working with Open Source Software * Lots of opportunity for advancement and growth * Working directly with Martin and Mark * Lo

RE: [Asterisk-Users] suggested hardware especially sound cards

2003-10-03 Thread Paul Crick
> I would love to see this kind of information. I was talking a while back about a registry of live systems out there, kind of like the Asterisk version of the Linux Counter. It's still on my list of things to do, I've scribbled some notes so far, just haven't got round to doing it.. RealSoonNow(

Re: [Asterisk-Users] SIP text messages with Asterisk

2003-10-03 Thread Jan Janak
On 03-10 12:45, Luis Vazquez wrote: > WipeOut wrote: > > >Luis Vazquez wrote: > > > >>Hello all, I'm new to this list and starting with Asterisk. > >> > >>Have any of you have tried a SIP client (like Microsoft messenger) to > >>sent text messages and voice through an Asterix server? > >>Is this

Re: [Asterisk-Users] the g729 situation

2003-10-03 Thread Jan Janak
Ask the producers to implement iLBC: http://www.globalipsound.com/products/iLBCfreeware.php It is free and from my experience one of the best codecs available. Grandstream promised to implement it "in the future" :-). X-lite and kphone ( http://www.wirlab.net/kphone ) support it. Jan. On 03-1

Re: [Asterisk-Users] where to specify mysql DB USER PASSWD for voicemail2

2003-10-03 Thread Leif Madsen
Tilghman Lesher wrote: On Friday 03 October 2003 07:54 am, Sip Rtp wrote: I am able to compile the old version of * PBX from the CVS dated 20 Sept 2003 when the mysql support was there .. But i have not been able to find out that hoe the Voicemail2 will work with mysql database. Means Is there an

[Asterisk-Users] Small problem with FAX and Modem.

2003-10-03 Thread Nicholas Romero
Is there a good way to detect FAX and Modem on a call that is established and then take some sort of action? What I have is a situation that all calls going out through an asterisk system are being recorded. Some of those calls are internal fax machines or modems. When monitoring is turned on is

Re: [Asterisk-Users] Hardware Question

2003-10-03 Thread Glenn Dalgliesh
www.diguim.com Wildcard T100P - Single t1 http://www.digium.com/downloads/product_sheets/T100P.pdf Wildcard TE410P - 4 port - I believe support independant config of each T1 http://www.digium.com/downloads/product_sheets/TE410P.pdf Wildcard T400P - 4 port - http://www.digium.com/downloads/product_

[Asterisk-Users] Hardware Question

2003-10-03 Thread Jorge Daniel Cisneros Flores
Hi Somebody can tell me wich card i need to use that suport e&m signal, and is posible to connect this card to any PBX Thanks ___ Asterisk-Users mailing list [EMAIL PROTECTED] http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] Iconnect Incomming calls

2003-10-03 Thread Glenn Dalgliesh
; SIP Configuration for Asterisk;[general]port = 5060 ; Port to bind tobindaddr = 0.0.0.0  ; Address to bind tocontext = sipinbound    ; Default for incoming callsregister => 1410344:[EMAIL PROTECTED]/1410344   --=-=-=-= extentions.conf-=-=

Re: [Asterisk-Users] Sound file..

2003-10-03 Thread John Todd
Hi, Here is a bit of a long shot.. Does anyone have a gsm sound file that says somthing like "All our (outgoing) lines are currently busy, Please try again later."? Or anything close? I would record it my self but I hate hearing myown voice on the prompts.. :) later.. You can probably patch

Re: [Asterisk-Users] Budgettone + G729

2003-10-03 Thread John Todd
many thanks! it's all pretty much a hit & miss process becaues of Asterisk's notorious lack of documentation.. I will try this out at my client tomorrow, fingers crossed. cheers Dave - Original Message - From: "T Aksoy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 03, 2

Re: [Asterisk-Users] Problems with Caller ID on FXO

2003-10-03 Thread Chris Hirsch
I'm still seeing this: *CLI> -- Starting simple switch on 'Zap/1-1' NOTICE[262161]: File callerid.c, Line 238 (callerid_feed): Caller*ID failed checksum NOTICE[262161]: File chan_zap.c, Line 4314 (ss_thread): Got event 2 (Ring/Answered)... My zaptel.conf: fxsks=1 loadzone = us defaultzone

Re: [Asterisk-Users] Problems with Caller ID on FXO

2003-10-03 Thread Eric Wieling
On Fri, 2003-10-03 at 13:28, Chris Hirsch wrote: > failed checksum > NOTICE[262161]: File chan_zap.c, Line 4314 (ss_thread): Got event 2 > (Ring/Answered)... I've only seen this message when using callprogress=yes and/or busydetect=yes. Set them to no. -- Sample configs and more: http://www.fn

Re: [Asterisk-Users] Message Waiting on Cisco 7940 - Resolved

2003-10-03 Thread Babak Pasdar
This issue was resolved by adding the @context in the voicemail.conf file for the extension to the mailbox=XXX command. [EMAIL PROTECTED] Thanks so much for your help. Babak On Fri, 2003-10-03 at 14:43, Babak Pasdar wrote: > Jared, > > Thanks for the response. I have tried > > [EMAIL PROTEC

Re: [Asterisk-Users] "New" TDM cards--driver won't load

2003-10-03 Thread Mark Spencer
> > Is it showing up on /proc/pci? It should be a tigerjet. > > Yes. I put the other card back in (production machine) but over the > weekend I'll get the card in there and capture the output of lspci. If the card shows up in /proc/pci then your motherboard *must* be supplying 3.3V somehow (unle

[Asterisk-Users] Problems with Caller ID on FXO

2003-10-03 Thread Chris Hirsch
Hey all...for whatever reason my caller id doesn't appear to be working. My setup is simple (Wildcard FXO and thats it) and I'm just expecting the Caller ID to show up on the console. I'm seeing this: *CLI> -- Starting simple switch on 'Zap/1-1' NOTICE[262161]: File callerid.c, Line 238 (cal

Re: [Asterisk-Users] Message Waiting on Cisco 7940 does not work

2003-10-03 Thread Babak Pasdar
Jared, Thanks for the response. I have tried [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] none of these worked for me. I have enclosed part of my entensions.conf as well as my voicemail.conf Hopefully this will provide pertinent information. Again thanks for your help. Bbaak ---

Re: [Asterisk-Users] asterisk and 3com

2003-10-03 Thread Chris Hirsch
We have the 3com NBX100 here at work..if anybody has ANY info on integrating * and the NBX I'd LOVE to hear about it. I'm not very happy with the NBX but loving what I'm learning about *. Hi! Anybody have experience using asterisk and 3com voip systems? Miklos _

[Asterisk-Users] asterisk and 3com

2003-10-03 Thread listas iPfone
Hi! Anybody have experience using asterisk and 3com voip systems? Miklos ___ Asterisk-Users mailing list [EMAIL PROTECTED] http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] Iconnect Incomming calls

2003-10-03 Thread listas iPfone
Hi!   I´m thinking in an incoming number from ICH   please share your sip and extensions.conf files off list, it will help me a lot.   miklos - Original Message - From: Glenn Dalgliesh To: [EMAIL PROTECTED] Sent: Friday, October 03, 2003 2:17 PM Subject: [Aste

[Asterisk-Users] Help Loading a TDM card!!

2003-10-03 Thread WipeOut
Is there anything special needed to load up a TDM10B card?? I got the card today.. Took it from the box, put it into a PCI slot.. connected the power to the card and booted the PC.. I have removed the X100P to avoid confusion and I have the following in the config files.. in /etc/zaptel.conf #

Re: [Asterisk-Users] Message Waiting on Cisco 7940 does not work

2003-10-03 Thread Jared Smith
I think you need [EMAIL PROTECTED], where voicemailcontext is your voice mail context. (I'm assuming you're using VoiceMail2.) Hope that helps... Jared Smith On Fri, 2003-10-03 at 12:01, Babak Pasdar wrote: > I have a cisco 7940 with the following sip.conf config: > > [Desk1.1] > type=friend >

RE: [Asterisk-Users] Cisco CallManager Image for 7940/7960

2003-10-03 Thread DUSTIN WILDES
Ah - just got it finished!! In case anyone else has this problem, here's what I done: 1) Extract the cmterm- file from cisco in order to get the data1.cab (I used linux's cabextract) 2) Extract the two files 'P00305000200.bin' & 'P0030500200.sbn' of the data1.cab file (I used i6comp for w

Re: [Asterisk-Users] suggested hardware especially sound cards

2003-10-03 Thread David Mutterer
I would love to see this kind of information. > Hello, > > I've seen various suggestions thrown around for hardware when people > ask, but can we all agree on some basic hardware recommendations for a > few basic setups(and post them on a website) to make it easier for new > people to avoid some

[Asterisk-Users] SIP - H.323 Gateway

2003-10-03 Thread Mireia.Munoz-de-jesus
Hi all! Are there some people who have already implemented a SIP - H.323 Gateway? I am trying to do so... but I don't know how. Please if anyone can help me... Thanks a lot for all your answers. Mireia ___ Asterisk-Users mailing list [EMAIL PROTECTED

[Asterisk-Users] Message Waiting on Cisco 7940 does not work

2003-10-03 Thread Babak Pasdar
I have a cisco 7940 with the following sip.conf config: [Desk1.1] type=friend secret=** defaultip=192.168.1.14 insecure=no mailbox=102 callerid="Desk1.1" qualify=500 canreinvite=no context=extensions host=dynamic group=2 I do not get message waiting indicator (mwi) on this phone. Is the ano

RE: [Asterisk-Users] Cisco CallManager Image for 7940/7960

2003-10-03 Thread Dan Austin
I've moved back and forth using the OS79XX.TXT file on the TFTP server. Copy the bin file, modify the OS79XX.TXT to have name of the firmware image and power cycle the phone. The only issue with this process is that once you have the phone running the firmware you want, you need to clear out the f

RE: [Asterisk-Users] Cisco CallManager Image for 7940/7960

2003-10-03 Thread Matthew Hardeman
Dustin, It's quite a pain to get those without a CallManager... However, there are some tools for extracting the compressed files from an InstallShield image and I have successfully done so with those files in particular and was able with some tweaking to get a phone back to Skinny without having

[Asterisk-Users] Cisco CallManager Image for 7940/7960

2003-10-03 Thread DUSTIN WILDES
Does anyone have the .bin file(s) to convert a Cisco 7940/7960 back to the CallManager image? I want to start playing around with the chan_skinny addition, but it seems the .exe's from cisco want to open a connection to a SQL server or CallManager (which I don't have).

Re: [Asterisk-Users] Voice detection

2003-10-03 Thread Brad Waite
Steve, I don't have any real experience in DSP methodologies, although I have picked up on the high-level theories in my research. However, I am *very* strong-willed in the "Where there's a will, there's a way" category. :) Here's my current thought: Sphinx is an open source STT library that

[Asterisk-Users] Iconnect Incomming calls

2003-10-03 Thread Glenn Dalgliesh
I have an IconnectHere account with a Inbound number and have setup the sip.conf to register and am recieving the call but When I answer the call it disconnect. I have tried sending the call to from * to a Softphone, Pingtel, and FXS port and all result the same. As soon as I accept the call

Re: [Asterisk-Users] Ascom Ascotel 2050 & Fritz PCI Card (Capi)

2003-10-03 Thread Klaus-Peter Junghanns
Hi Dave, try : Dial(CAPI/${CALLERIDNUM}:${EXTEN},10) (make sure you have a msn= line in capi.conf that allows this for ${CALLERIDNUM}) regards kapejod -- Klaus-Peter Junghanns CEO,CTO Junghanns.NET GmbH Breite Strasse 13 - 12167 Berlin - Germany fon:+49 30 79705392 fax:+49 30 7970539

Re: [Asterisk-Users] New here

2003-10-03 Thread Glenn Dalgliesh
Below are some links that should point you in the right direction. Assuming you don't have any IP Phone on hand I would recomment starting with to computers with softphone(one example http://www.eutecticsinc.com/download6/DISK1/IPP200_SJSoftPhone.htm) and have them talk to each other. http://www.

[Asterisk-Users] Ascom Ascotel 2050 & Fritz PCI Card (Capi)

2003-10-03 Thread Dave Sykes
Hello, We have been trying to add asterisk to our Ascom Ascotel 2050 PBX. We have a AVM Fritz!PCI Card connected to an S0 bus extension from the PBX. The fritz card is configured to use chan_capi, and we can make calls SIP->SIP SIP->PBX extension PBX extension->SIP all successfully, we have assign

[Asterisk-Users] Transfer fails periodically

2003-10-03 Thread jerk face
Has anybody else out there had a problem with transfers not being detected? Occasionally I will want to transfer somebody, so I'll hit the # key and instead of the Transfer application starting, the # tone is played. My hardware is T100P connected to an Adtran TA 750. I have relaxdtmf=yes in zapa

Re: [Asterisk-Users] where to specify mysql DB USER PASSWD for voicemail2

2003-10-03 Thread Tilghman Lesher
On Friday 03 October 2003 07:54 am, Sip Rtp wrote: > I am able to compile the old version of * PBX from the CVS dated 20 > Sept 2003 when the mysql support was there .. > > But i have not been able to find out that hoe the Voicemail2 will > work with mysql database. Means Is there any file like > c

Re: [Asterisk-Users] codecs questions

2003-10-03 Thread Tilghman Lesher
On Friday 03 October 2003 08:06 am, listas iPfone wrote: > I have that lines in sip.conf: > > disallow=all > allow=gsm > allow=ulaw > allow=alaw > > when i use show codecs: > > localhost*CLI> show codecs >1 (1 << 0) G.723.1 >2 (1 << 1) GSM >4 (1 << 2) G.711 u-law >

Re: [Asterisk-Users] Transfer from IAX call

2003-10-03 Thread Richard Lyman
you'll find that the context is being overwritten. look in chan_iax.c line 1628 and chan_iax2.c line 1645 (or within 3 lines of each) there is a sprintf that is stuff the context, if you comment those out, it should work again. Disclaimer: i have NO CLUE what else this BREAKS!!! Dave Weis wrot

[Asterisk-Users] New here

2003-10-03 Thread Mireia.Munoz-de-jesus
Hi! I have downloaded asterisk... and I have installed it how I continue? I don't know anything about the software and I don't really understand how it works please any help will be ok. Does it exist some manual? Thanks a lot! ___ Asterisk-Us

RE: [Asterisk-Users] Transfer from IAX call

2003-10-03 Thread Josh Roberson
I recreated your problem using the 09/09 cvs source tree. The only way I found around that is to create the extensions.conf context for [NANPA], like this: [NANPA] include => local ; Allow transfers from IAX calls to cellphone through NuFone in local pbx context (ie, 1000 for queue, 1001 for A

[Asterisk-Users] (still) Channel problem - solved partially

2003-10-03 Thread Paulo H. Mannheimer
Hi, continuing my quest to solve this problem, I've found that if I change my zapata.conf file and REORDER the channels, the problem only happens when I use channel 4. Thus, instead of having channel=4-7 now I have channel=6-7 channel=4-5 The effect is that when I make a connectio machine 1 F

RE: [Asterisk-Users] Voice detection

2003-10-03 Thread Scott Stingel
TC- Maybe, but its really not designed for the purposes that most people here would need - more for audio and tone detection on recorded PCM files, and also distortion analysis. Let me think about what it would take to make it work on real-time PCM data! Cheers Scott Scott M. Stingel Emerging V

RE: [Asterisk-Users] No Ringback on Iconnect

2003-10-03 Thread Kevin
Unfortunately, that didn't do it.. I get a brief ringback from the asterisk but none from the sip connection. It works with Nufone and nikotel nut not iconnecthere. -Original Message- From: Wade J. Weppler [mailto:[EMAIL PROTECTED] Sent: Friday, October 03, 2003 11:37 AM To: [EMAIL PROTE

Re: [Asterisk-Users] SIP text messages with Asterisk

2003-10-03 Thread Luis Vazquez
WipeOut wrote: Luis Vazquez wrote: Hello all, I'm new to this list and starting with Asterisk. Have any of you have tried a SIP client (like Microsoft messenger) to sent text messages and voice through an Asterix server? Is this possible or the Asterix server simply can't manage this kind of t

RE: [Asterisk-Users] No Ringback on Iconnect

2003-10-03 Thread Wade J. Weppler
Try the 'r' option in your Dial command. exten => 1234,1,Dial,SIP/[EMAIL PROTECTED]||r For further options, try "show application dial" from the CLI. -wade -Original Message- From: Kevin [mailto:[EMAIL PROTECTED] Sent: Friday, October 03, 2003 11:28 AM To: [EMAIL PROTECTED] Subject: [

[Asterisk-Users] No Ringback on Iconnect

2003-10-03 Thread Kevin
When I place a call using Iconnecthere as my sip provider, I hear no ringback when making a call.  Does anyone else have this problem or offer any suggestions?  Thanks, Kevin  

Re: [Asterisk-Users] Voice detection

2003-10-03 Thread TC
>Yes, there's lots of voice detection software that exists - but not much >free software. Last year, I had to pay an audio software engineer to >develop similar code Scott, dont suppose that code could be disclaimed ?? :) ___ Asterisk-Users mailing lis

RE: [Asterisk-Users] Voice detection

2003-10-03 Thread Scott Stingel
Hi Brad- Yes, there's lots of voice detection software that exists - but not much free software. Last year, I had to pay an audio software engineer to develop similar code for a project that I was working on. Detecting voice (or any kind of audio) is a matter of measuring the audio energy in the

Re: [Asterisk-Users] monitor

2003-10-03 Thread Nick Knight
no /var/spool/asterisk/monitor - although there is a /var/spool/asterisk clippnig from extensions.conf exten => 870582,1,Wait(1) exten => 870582,2,Monitor() exten => 870582,3,Dial(${EVERYONE},10) exten => 870582,4,capiCD(${NUMBER}) exten => 870582,5,Hangup() Nick __

RE: [Asterisk-Users] H.323-SIP Gateway

2003-10-03 Thread T Aksoy
There is no need to use oh323. If you look in /usr/src/asterisk/channels/h323 then you will find that there is already an h323 implemenatation present (chan_h323). You just need to follow the instructions and it works great. Tan telappliant.com -Original Message- From: [EMAIL PROTECTED]

Re: [Asterisk-Users] Voice detection

2003-10-03 Thread Steve Underwood
Hi Brad, If you want to detect that a sound is voice, rather than something else, it isn't easy. There is information around on the Internet about methods, but I have never tried them and don't know how well they work. Unless you have some understanding of DSP I wouldn't bother trying. On the

Re: [Asterisk-Users] THE "NAT-MARE" IS OVER test volunteers needed

2003-10-03 Thread TC
I have a www.linuxrouter.org fw/nat & would luv to test this -Original Message-From: sip <[EMAIL PROTECTED]>To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>Date: October 2, 2003 8:34 PMSubject: [Asterisk-Users] THE "NAT-MARE" IS OVER test volunteers needed 5 volu

RE: [Asterisk-Users] H.323-SIP Gateway

2003-10-03 Thread Bryan Nolen
Basically you just need to make sure that the (o)h323 channel is compiled. Personally I use the chan_oh323 driver (google it). Its very easy, just like setting up an normal extentions (see handbook + voip-info.org + google) -Bryan > -Original Message- > From: [EMAIL PROTECTED] > [mailto

[Asterisk-Users] suggested hardware especially sound cards

2003-10-03 Thread mattf
Hello, I've seen various suggestions thrown around for hardware when people ask, but can we all agree on some basic hardware recommendations for a few basic setups(and post them on a website) to make it easier for new people to avoid some of the hardware/software pitfalls when they are setting up

[Asterisk-Users] H.323-SIP Gateway

2003-10-03 Thread Mireia.Munoz-de-jesus
Hi everybody! I am trying to do a H.323-SIP Gateway and someone have told me that asterisk would help me. Has this software this functionality? If it has, so what must I do to make that everything works ok? Thanks a lot for your answers! ___ Asteris

[Asterisk-Users] Transfer from IAX call

2003-10-03 Thread Dave Weis
I am using IAX to send a call to my cell phone. I want to be able to hit # and transfer it back into the office. I have added tTr to the dial command and hitting # prompts me for the transfer, but after I start dialing 103, it stops at 1 and tries to transfer it within nufone instead of my dia

Re: [Asterisk-Users] Predictive Dialer

2003-10-03 Thread James Coberly
I will join the other list, but as a statement from the industry We actually utilize it for our existing client base, it is not for direct cold-calling of new clientel. I am sure that most ppl don't like to have the automated/manned systems from many companies calling them, but there

[Asterisk-Users] pbx spool question

2003-10-03 Thread Steven Poelmans
Hello all, I have a question about the pbx spool and extensions. After I put a "sample.call" in /var/spool/asterisk/outgoing, Asterisk calls out and jumps to context ringback. [ringback] exten => s,1,ResponseTimeout(5) exten => s,2,DigitTimeout(5) exten => s,4,SetVar some variables exten => s,5,B

Re: [Asterisk-Users] monitor

2003-10-03 Thread WipeOut
Nick Knight wrote: Hello all again, Last time you helped by suggestiong that monitor will record by telephone conversations - I have added this to my config - but where does it save the files? Nick ___ Asterisk-Users mailing list [EMAIL PROTECTED] http:

[Asterisk-Users] monitor

2003-10-03 Thread Nick Knight
Hello all again, Last time you helped by suggestiong that monitor will record by telephone conversations - I have added this to my config - but where does it save the files? Nick ___ Asterisk-Users mailing list [EMAIL PROTECTED] http://lists.digium.com/

[Asterisk-Users] codecs questions

2003-10-03 Thread listas iPfone
Hi! I have some question about the use of codecs in sip.conf I have that lines in sip.conf: disallow=all allow=gsm allow=ulaw allow=alaw when i use show codecs: localhost*CLI> show codecs 1 (1 << 0) G.723.1 2 (1 << 1) GSM 4 (1 << 2) G.711 u-law 8 (1 << 3) G.

[Asterisk-Users] where to specify mysql DB USER PASSWD for voicemail2

2003-10-03 Thread Sip Rtp
Hi list ,   I am able to compile the old version of * PBX from the CVS dated 20 Sept 2003 when the mysql support was there ..   But i have not been able to find out that hoe the Voicemail2 will work with mysql database. Means Is there any file like cdr_mysql.conf file where we have to specify

Re: [Asterisk-Users] SIP text messages with Asterisk

2003-10-03 Thread WipeOut
Luis Vazquez wrote: Hello all, I'm new to this list and starting with Asterisk. Have any of you have tried a SIP client (like Microsoft messenger) to sent text messages and voice through an Asterix server? Is this possible or the Asterix server simply can't manage this kind of traffic? Regards

[Asterisk-Users] SIP text messages with Asterisk

2003-10-03 Thread Luis Vazquez
Hello all, I'm new to this list and starting with Asterisk. Have any of you have tried a SIP client (like Microsoft messenger) to sent text messages and voice through an Asterix server? Is this possible or the Asterix server simply can't manage this kind of traffic? Regards, Luis

[Asterisk-Users] Sound file..

2003-10-03 Thread WipeOut
Hi, Here is a bit of a long shot.. Does anyone have a gsm sound file that says somthing like "All our (outgoing) lines are currently busy, Please try again later."? Or anything close? I would record it my self but I hate hearing myown voice on the prompts.. :) later.. ___

RE: [Asterisk-Users] the g729 situation

2003-10-03 Thread Uriel Carrasquilla
If we avoid g729, what options do we have for SIP/Budgetone/Grandstream when communicating to * via the Internet and still have something comparable to GSM? Uriel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jan Rychter Sent: Thursday, October 02, 2003 2:1

Re: [Asterisk-Users] Budgettone + G729

2003-10-03 Thread Dave Alan Caruana
many thanks! it's all pretty much a hit & miss process becaues of Asterisk's notorious lack of documentation.. I will try this out at my client tomorrow, fingers crossed. cheers Dave - Original Message - From: "T Aksoy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 03

RE: [Asterisk-Users] Budgettone + G729

2003-10-03 Thread T Aksoy
Hi, Unless there has been a recent change, you can't set codecs in the sip.conf on a per-context basis. The way to do what you want is to have the following in the [general] area: disallow=all allow=ulaw allow=alaw allow=g729 Then, set all the codec preferences on the g729 phone to g729. That ph

[Asterisk-Users] Budgettone + G729

2003-10-03 Thread Dave Alan Caruana
hi there .. I asked sometime ago regarding getting a Budgettone working with Asterisk over G729. My system is quite simple, Asterisk server with 1 G 729 license installed, and 10 Grandstream phones. Only one of them needs G729, because it's on a remote link via an ADSL bridge. The rest run happily

Re: [Asterisk-Users] Does gnophone 0.2.5 work? Other god sftphones?

2003-10-03 Thread Dave Cotton
On Fri, 2003-10-03 at 03:30, Chris Albertson wrote: > I checked out gnophone from CVS and I'm trying to build it. > I got as far as getting a ./configure built and that to > build the makefiles and then I find compile poblems in the source. > Leads me to thing maybe 0.2.5 is still a work in progres

Re: [Asterisk-Users] primuxisdn capi

2003-10-03 Thread Michael Koehler
it works well with chan_capi. Marian Danisek wrote: Hi, does anybody know if primus isdn cards - they support capi under linux, provided by own driver are usable with asterisk together with capi channel driver ? http://www.primuxisdn.de/primux/index.htm regards Marian

[Asterisk-Users] primuxisdn capi

2003-10-03 Thread Marian Danisek
Hi, does anybody know if primus isdn cards - they support capi under linux, provided by own driver are usable with asterisk together with capi channel driver ? http://www.primuxisdn.de/primux/index.htm regards Marian -- SUNTEQ s. r. o. Hviezdoslavova 9 # Prievidza # 971 04 # Slovak republic