Are ther any possibility of Wait into a Hangup Handler? I need to wait like 60 seconds after the call hangups in order to do some stuffs, something like:
…
same => n,Set(CHANNEL(hangup_handler_push)=handler1,s,1);
[handler1]
exten => s,1,Verbose(hh ok)
same => n,Wait(10)
same => n,Verbose(hh after 10 secs ok)
same => n,Return()
Seems to be not working, I think it is cause the channel do not exists afer 10 seconds but not sure…