Re: [asterisk-users] Asterisk 1.6 = No sound/voice when i redirect the call

2011-04-04 Thread Olivier CALVANO
Hi very thanks, that's work bye olivier 2011/4/3 Mark Murawski markm-li...@intellasoft.net: I gave you the syntax in ael format, if you want to use extensions.conf you'll have to use the syntax that's applicable, which is: [start-audio] exten = s,1,Playback(silence/1) On 04/03/11 14:14,

[asterisk-users] Asterisk 1.6 = No sound/voice when i redirect the call

2011-04-03 Thread Olivier CALVANO
Hi i use this into my extension : exten = _00339,1,Set(foo=${SIP_HEADER(To)}) exten = _00339,2,Set(cut1=${CUT(foo,:,2)}) exten = _00339,3,Set(CLI=${CUT(cut1,,1)}) exten = _00339,4,Set(toexten=${CUT(CLI,@,1)}) exten =

Re: [asterisk-users] Asterisk 1.6 = No sound/voice when i redirect the call

2011-04-03 Thread Mark Murawski
In that situation, I've had to do a pickup macro that kind of primes the audio. Dial(SIP/MyOperator/${NUMAPPEL},180,rtU(start-audio)) context start-audio { s = { Playback(silence/1); } } The above might help... What it does is plays an audio track on the callee's channel

Re: [asterisk-users] Asterisk 1.6 = No sound/voice when i redirect the call

2011-04-03 Thread Olivier CALVANO
Hi Mark Thanks for your answer, but i am new in asterisk ;=) the context start-audio ... i put it into the extension.conf ? because i have a error: [Apr 3 20:12:08] WARNING[28078]: config.c:1154 process_text_line: No '=' (equal sign) in line 134 of /etc/asterisk/extension-operator.conf [Apr 3

Re: [asterisk-users] Asterisk 1.6 = No sound/voice when i redirect the call

2011-04-03 Thread Mark Murawski
I gave you the syntax in ael format, if you want to use extensions.conf you'll have to use the syntax that's applicable, which is: [start-audio] exten = s,1,Playback(silence/1) On 04/03/11 14:14, Olivier CALVANO wrote: Hi Mark Thanks for your answer, but i am new in asterisk ;=) the context