Greetings all- I've got a rather odd situation and would like to know if anyone can shed some light on the issue. Some background- I've got an * system running 1.4.11 (yes I know it's older.. upgrades are planned at some point...). I also have a remote user with a cordless phone connected to a Draytek ATA device. When this user is on a call and receives another call via call waiting, they use the 'flash' button on their phone to switch to the other call. When this occurs, music on hold is started for the first call, and the second call is connected. However, at this point music on hold suddenly stops and audio from both calls can be heard together (and is rather garbled). Then, hitting flash again, call 2 is disconnected and call 1 is connected again. BUT, only one way audio(inbound to the user) is available on the first call now. I thought it could be a problem with MoH and ensured that was setup properly. Still the same problem. Then, I thought it could be a problem with the version of Asterisk I was running. As it turns out, a separate system running 1.2.13 works perfectly. So, at this point, I have to ask... are there any known issues like this that have been fixed in later versions than what I'm running? I know I'll probably receive a general blanket statement like "upgrade to the latest" but what I'm looking for is solid proof that an upgrade will fix it (something from the bug tracker maybe?). Or, maybe I'm going about this the wrong way and its something configured wrong elsewhere and * is not at fault? All thought and comments welcome. Thank you! Tim Nelson Systems/Network Support Rockbochs Inc. (218)727-4332 x105
Dear All, I am using Asterisk 1.4 on CentOS 5. I have an incoming DID provided by Vitelity. When the number is called it goes to my Asterisk box. The protocol is SIP. This all works just fine if I answer the call and begin a playback. I want to let the number ring for a few seconds before it is answered, and would like the caller to hear it ringing. I have tried: ... exten => s,n,Answer exten => s,n,Playtones(ring) exten => s,n,Wait(10) exten => s,n,StopPlaytones() exten => s,n,BackGround(sound file) ... also ... exten => s,n,Answer exten => s,n,Ringing() exten => s,n,Wait(10) exten => s,n,BackGround(sound file) ... I have also tried moving the Answer app to right before the BackGround app. In all cases when I call the number I never hear it ringing. After the 10 second delay, the BackGround app does run. Connecting to the CLI does not give me any useful information - for example the Ringing app is shown to run, but the caller does not hear it. Any suggestions? Many thanks! -- Bob Smither <Smither at C-C-I.com>
Try putting the wait before the Answer. ... exten => s,n,Wait(10) exten => s,n,Answer ... On Fri, Dec 18, 2009 at 5:10 PM, Bob Smither <Smither at c-c-i.com> wrote:> Dear All, > > I am using Asterisk 1.4 on CentOS 5. ?I have an incoming DID provided by > Vitelity. ?When the number is called it goes to my Asterisk box. ?The > protocol is SIP. ?This all works just fine if I answer the call and > begin a playback. > > I want to let the number ring for a few seconds before it is answered, > and would like the caller to hear it ringing. ?I have tried: > > ... > exten => s,n,Answer > exten => s,n,Playtones(ring) > exten => s,n,Wait(10) > exten => s,n,StopPlaytones() > exten => s,n,BackGround(sound file) > ... > > also > > ... > exten => s,n,Answer > exten => s,n,Ringing() > exten => s,n,Wait(10) > exten => s,n,BackGround(sound file) > ... > > I have also tried moving the Answer app to right before the BackGround > app. > > In all cases when I call the number I never hear it ringing. ?After the > 10 second delay, the BackGround app does run. ?Connecting to the CLI > does not give me any useful information - for example the Ringing app is > shown to run, but the caller does not hear it. > > Any suggestions? > > Many thanks! > > -- > Bob Smither <Smither at C-C-I.com> > > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > ? http://lists.digium.com/mailman/listinfo/asterisk-users >
On Fri, 2009-12-18 at 19:58 -0600, Steve Johnson wrote:> Try putting the wait before the Answer. > > ... > exten => s,n,Wait(10) > exten => s,n,Answer > ...Thanks Steve. I tried that:> On Fri, Dec 18, 2009 at 5:10 PM, Bob Smither <Smither at c-c-i.com> wrote: > > Dear All,<snip>> > > > ... > > exten => s,n,Answer > > exten => s,n,Ringing() > > exten => s,n,Wait(10) > > exten => s,n,BackGround(sound file) > > ... > > > > I have also tried moving the Answer app to right before the BackGround > > app.<snip> i.e., after the Wait, but still no joy. Anything else I need to look at? Thanks, -- Bob Smither <Smither at C-C-I.com>