Álvaro Palma wrote: > [test_context] > exten => 1234,1,Dial(SIP/test,15,G(text_context,1234,2),j) ; With "j" flag This is wrong; multiple options to Dial go into the same argument position, not separated. exten => 1234,1,Dial(SIP/test,15,G(text_context,1234,2)j) should do what you want.