Re: [Asterisk-Users] Outgoing voice distortion with Unicall

2006-04-18 Thread CC Jay
Carlos,Unicall is for signalling only, i.e., it only takes part in setting up and tearing down a connection, therefore, it has nothing to do with speech quality.I'd think what you're experiencing is phone related and/or transcoding. Regards, ___ --Bandwid

Re: [Asterisk-Users] Dial Plan Logic Problem

2006-04-06 Thread CC Jay
Your (abridged) dialplan looks OK to me. Nonetheless, you should:1) restart * then try again, and if that doesn't work2) make sure you load the "correct" extensions.conf (the one you think you're loading) Good luck!On 4/5/06, Jon Farmer <[EMAIL PROTECTED]> wrote: HiI can't for the life of me work o

Re: [Asterisk-Users] Tearing my hair out with Queues

2006-03-23 Thread CC Jay
etry = 0member => Agent/80014055member => Agent/80014057member => Agent/80014052member => Agent/80014051member => Agent/80014033member => Agent/80014050 -Original Message-From: CC Jay [mailto:[EMAIL PROTECTED]]Sent: Thu 3/23/2006 11:16 PMTo:

Re: [Asterisk-Users] Tearing my hair out with Queues

2006-03-23 Thread CC Jay
In that case, you should post part of extensions.conf which is related to Queues/agents, which makes it easier to troubleshoot your problem. Besides, you haven't mentioned how incoming calls get into your queue. PSTN or VoIP calls? All providers set some limit on the time a call can be placed on th

Re: [Asterisk-Users] Tearing my hair out with Queues

2006-03-23 Thread CC Jay
"300" is the maximum time a call can be placed in a queue, after that, next priority will be executed."15" is the time each agent will be rung before * tries the next agent."CHANUNAVAIL" happens since Queue rings Agent/xyz, Agent/xyz in turn tries to ring SIP/abc but cannot find it, hence... BTW, y

Re: [Asterisk-Users] Tearing my hair out with Queues

2006-03-23 Thread CC Jay
You still need to bind Agent/* with SIP/* via AgentLogin/CallbackLogin/etc. to make it work (i.e., solving the CHANUNAVAIL prob.) then the timeout DOES appear to be honored, except that Queue returns CHANUNAVAIL, and does not proceed to the next step in the dialplan. Again, Why? I'm just trying to

Re: [Asterisk-Users] Tearing my hair out with Queues

2006-03-23 Thread CC Jay
You may wanna try...extensions.conf:exten => q_main,1,Queue(oneeighty_main300)...[oneeighty_main]musiconhold = defaulttimeout = 15...Cheers. On 3/24/06, Douglas Garstang <[EMAIL PROTECTED]> wrote: Egads. Getting queues to work is like pulling teeth.extensions.conf:exten => q_main,1,Queue(oneeig

Re: [Asterisk-Users] answer delay

2006-03-20 Thread CC Jay
Not sure about 1.2.4 but with 1.0.9, you'll need to add "noanswer" to playback since playback will try to answer the line, i.e.,exten => 5551234,1,Playback(you-wont-be-billed-for-hearing-this, noanswer) exten => 5551234,n,Answeretc. ___ --Bandwidth and Co

Re: [Asterisk-Users] Periodic-announce in queues

2006-03-07 Thread CC Jay
Try this ...extensions.conf -->; Queue with Music on holdexten => s,2,Queue(test|mtT|||200) ___ --Bandwidth and Colocation provided by Easynews.com -- Asterisk-Users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/

[Asterisk-Users] What happens to global and channel variables?

2006-01-24 Thread CC Jay
Hi all,I've been using global and local channel channel variables extensively in my dialplan. I'd like to know what happen to those variables after the variables no longer used. Is it possible to explicitly destroy them (free the associated memory) of the variables no longer needed? I'm using * 1.0