Arpit Mehta
2007-Dec-07 03:57 UTC
[asterisk-users] Where does the call go in the dialplan after a call disconnects
Hi all , I would like to do some cleaning up after my call disconnects. For this I need to know where in the dialplan a call goes after it disconnects ? Is there any special place in the dialplan a call goes to when it disconnects ? Thanks Regards -- Arpit Mehta Graduate Student Department of Computer Science Columbia University Tel: 1-646-387-5998
Igor A. Goncharovsky
2007-Dec-07 05:19 UTC
[asterisk-users] Where does the call go in the dialplan after a call disconnects
Arpit Mehta wrote:> I would like to do some cleaning up after my call disconnects. For > this I need to know where in the dialplan a call goes after it > disconnects ? Is there any special place in the dialplan a call goes > to when it disconnects ? >After call disconnected, dialplan execution moves to h extension, if it exists. For example: [default] exten => 10,1,Dial(SIP/10) exten => h,1,NoOp(Call End. Cleanup.) -- Best regards, Igor A. Goncharovsky ________________________________ ICQ: 648337 mailto: igi-go at ya.ru ________________________________
Dovid B
2007-Dec-09 00:37 UTC
[asterisk-users] Where does the call go in the dialplan after acall disconnects
----- Original Message ----- From: "Arpit Mehta" <am2866 at columbia.edu> To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users at lists.digium.com> Sent: Friday, December 07, 2007 5:57 AM Subject: [asterisk-users] Where does the call go in the dialplan after acall disconnects> Hi all , > > I would like to do some cleaning up after my call disconnects. For > this I need to know where in the dialplan a call goes after it > disconnects ? Is there any special place in the dialplan a call goes > to when it disconnects ? > > Thanks > > Regards > > --The h extension. http://www.voip-info.org/wiki/index.php?page=Asterisk+h+extension You may have something like this: Exten => _X.,Dial(SIP${EXTEN}@provider) Exten => h,1,Noop("The Call Has Been Terminated")