Hi,
In extensions.conf I have the context
[appels_internes]
exten => _9X.,1,NoOp()
same => n,Set(CALLFILENAME=${EXTEN}-${STRFTIME(${EPOCH},,%Y%m%d-%H%M%S)}))
same => n,Monitor(wav,${CALLFILENAME},m)
same => n,Dial(SIP/${EXTEN:1},20,tT) ;Utilisation du 9 pour appeler quelqu'un e$
same => n,Goto(VoiceMail,0999,1) ;Va vers la messagerie vocale au bout de 20 sec
same => n,Hangup()
exten => s,1,agi(googletts.agi,"Invalid extension.",en)
for my internal calls.
Also in features.conf, I have
[general]
parkext => 700
parkpos => 701-710
context => parkedcalls
I restarted using
core restart gracefully
However, while calling from SIP/0070 to SIP/0001, and pressing on SIP/0001 “#1” which should run a atxfer, I got
[2014-09-17 08:52:50] DTMF[16541]: channel.c:4062 __ast_read: DTMF begin '#' received on SIP/0001-00000003
[2014-09-17 08:52:50] DTMF[16541]: channel.c:4072 __ast_read: DTMF begin passthrough '#' on SIP/0001-00000003
[2014-09-17 08:52:50] DTMF[16541]: channel.c:3977 __ast_read: DTMF end '#' received on SIP/0001-00000003, duration 200 ms
[2014-09-17 08:52:50] DTMF[16541]: channel.c:4017 __ast_read: DTMF end accepted with begin '#' on SIP/0001-00000003
[2014-09-17 08:52:50] DTMF[16541]: channel.c:4046 __ast_read: DTMF end passthrough '#' on SIP/0001-00000003
[2014-09-17 08:52:53] DTMF[16541]: channel.c:4062 __ast_read: DTMF begin '1' received on SIP/0001-00000003
[2014-09-17 08:52:53] DTMF[16541]: channel.c:4072 __ast_read: DTMF begin passthrough '1' on SIP/0001-00000003
[2014-09-17 08:52:54] DTMF[16541]: channel.c:3977 __ast_read: DTMF end '1' received on SIP/0001-00000003, duration 200 ms
[2014-09-17 08:52:54] DTMF[16541]: channel.c:4017 __ast_read: DTMF end accepted with begin '1' on SIP/0001-00000003
[2014-09-17 08:52:54] DTMF[16541]: channel.c:4046 __ast_read: DTMF end passthrough '1' on SIP/0001-00000003
Seems like the code is not catched properly.
…and no call is forwareded…
May you help?