satish patel
2011-Jan-04 15:36 UTC
[asterisk-users] Call forwrading but call transfer back
Hi All, I have weird requirement for call forwarding. I have forward all call from A to B extension because A is very busy and sometime not available so B is taking care of all forwarding call from A. but in some case B need to transfer call to A and in this case call coming back to B again because of forwarding enabled. How to get rid on this condition ? How could B can transfer call to A ? Thanks, Satish -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110104/750066e1/attachment.htm>
Danny Nicholas
2011-Jan-04 19:21 UTC
[asterisk-users] Call forwrading but call transfer back
_____ From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of satish patel Sent: Tuesday, January 04, 2011 9:36 AM To: asterisk-users Subject: [asterisk-users] Call forwrading but call transfer back Hi All, I have weird requirement for call forwarding. I have forward all call from A to B extension because A is very busy and sometime not available so B is taking care of all forwarding call from A. but in some case B need to transfer call to A and in this case call coming back to B again because of forwarding enabled. How to get rid on this condition ? How could B can transfer call to A ? Thanks, Satish This is a job for ex-girlfriend logic. Set up your dialplan like this (A=1001, B=1002) Exten => 1001,verbose(extension A-1001 handling) Exten => 1001,n,dial(SIP/1002) Exten => 1001/1002,n,dial(SIP/1001) If you dial 1001 from anywhere except 1002, you get sent to 1002. If you dial 1001 from 1002, you get sent to 1001. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110104/b6167478/attachment.htm>
Asterisk Man
2011-Jan-05 09:44 UTC
[asterisk-users] Call forwrading but call transfer back
Do you forward the call from SIP phone or Asterisk dialplan. If it is from SIP Phone, above solution will not work. Infact any solution will not work except your softphone supports call forwarding based on some filter parameters. --AsteriskMan On 1/5/11, Danny Nicholas <danny at debsinc.com> wrote:> _____ > > From: asterisk-users-bounces at lists.digium.com > [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of satish patel > Sent: Tuesday, January 04, 2011 9:36 AM > To: asterisk-users > Subject: [asterisk-users] Call forwrading but call transfer back > > > > Hi All, > > I have weird requirement for call forwarding. I have forward all call from > A to B extension because A is very busy and sometime not available so B is > taking care of all forwarding call from A. but in some case B need to > transfer call to A and in this case call coming back to B again because of > forwarding enabled. How to get rid on this condition ? How could B can > transfer call to A ? > > Thanks, > Satish > > > > This is a job for ex-girlfriend logic. Set up your dialplan like this > (A=1001, B=1002) > > > > Exten => 1001,verbose(extension A-1001 handling) > > Exten => 1001,n,dial(SIP/1002) > > Exten => 1001/1002,n,dial(SIP/1001) > > > > If you dial 1001 from anywhere except 1002, you get sent to 1002. If you > dial 1001 from 1002, you get sent to 1001. > > > >