Re: [asterisk-users] Callback on busy

2017-01-27 Thread Steve Edwards
On Fri, 27 Jan 2017, Michele Pinassi wrote: i'm using Asterisk as a media box for a VoIP network based on OpenSIPS. When an user phone is busy, call was forwarded to an asterisk ext: ; === ; Voicemail on NOT AVAILABLE ;

Re: [asterisk-users] callback on busy

2012-07-27 Thread pepesz
Thanks a lot ! I will try the suggested solutions :) Cheers! pepesz On Thu, Jul 26, 2012 at 3:02 PM, pepesz pep...@gmail.com wrote: Dear all, I know the topic comes back like boomerang, but I did not find a nice solution. Does someone has/knows how to achieve call back on busy

Re: [asterisk-users] callback on busy

2012-07-26 Thread Danny Nicholas
The inherent problem with this is that it either requires a brute force solution or a queue and call solution. The brute Force solution would be something like this: [callee-is-busy] Exten = s,1,playback(callbackmsg) Exten = s,n,wait(3) Exten = s,n,playback(vm-goodbye) Exten = s,n,hangup()

Re: [asterisk-users] callback on busy

2012-07-26 Thread Richard Mudgett
I know the topic comes back like boomerang , but I did not find a nice solution. Does someone has/knows how to achieve call back on busy otherwise called camping? If one is calling the extension and it is busy, then caller should get something like Press 5 to request call back and after the

Re: [asterisk-users] callback on busy

2012-07-26 Thread Duncan Turnbull
On 27/07/2012, at 3:42 AM, Richard Mudgett rmudg...@digium.com wrote: I know the topic comes back like boomerang , but I did not find a nice solution. Does someone has/knows how to achieve call back on busy otherwise called camping? If one is calling the extension and it is busy, then

Re: [Asterisk-Users] callback on busy

2006-01-05 Thread Giovanni Miano
www.voip-info.org/tiki-index.php?page=Asterisk+auto-dial+outCheers,Giovanni Miano2006/1/5, Hill, John [EMAIL PROTECTED]: I was looking for a way to catch the zap busy return and do a redial.I would dial out on a zap channel. If the call is busy it would then hangupthe zap channel and ask if I

RE: [Asterisk-Users] callback on busy

2006-01-05 Thread John Hill
-Commercial DiscussionSubject: Re: [Asterisk-Users] callback on busy www.voip-info.org/tiki-index.php?page=Asterisk+auto-dial+outCheers,Giovanni Miano 2006/1/5, Hill, John [EMAIL PROTECTED]: I was looking for a way to catch the zap busy return and do a redial.I would dial out on a zap

Re: [Asterisk-Users] callback on busy

2005-03-02 Thread Paradise Dove
consider this scenario: A Calls B B transfers A to C C (is busy or does not answer) so A backs to B On Tue, 1 Mar 2005 23:07:17 +0330, Paradise Dove [EMAIL PROTECTED] wrote: consider this scenario: A Calls B B transfers A to C C (is busy or does not answer) so B backs to A On Tue, 1 Mar

Re: [Asterisk-Users] callback on busy

2005-03-02 Thread C F
I havn't tried this but you could try making use of the ${RDNIS} variable in the dial plan, and see if it works for you. On Wed, 2 Mar 2005 16:28:21 +0330, Paradise Dove [EMAIL PROTECTED] wrote: consider this scenario: A Calls B B transfers A to C C (is busy or does not answer) so A backs to

Re: [Asterisk-Users] callback on busy

2005-03-01 Thread C F
use retrydial. in the cli type show application retrydial have fun. On Tue, 1 Mar 2005 22:17:35 +0330, Paradise Dove [EMAIL PROTECTED] wrote: hi, is there anyway to implement callback on busy and callback on no answer on asterisk? has anybody done this before? thanks, Paradise Dove

Re: [Asterisk-Users] callback on busy

2005-03-01 Thread Eric Wieling
C F wrote: use retrydial. in the cli type show application retrydial have fun. This is only available in CVS-HEAD, not 1.0.x stable. ___ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] callback on busy

2005-03-01 Thread Paradise Dove
consider this scenario: A Calls B B transfers A to C C (is busy or does not answer) so B backs to A On Tue, 1 Mar 2005 14:25:33 -0500, C F [EMAIL PROTECTED] wrote: use retrydial. in the cli type show application retrydial have fun. On Tue, 1 Mar 2005 22:17:35 +0330, Paradise Dove [EMAIL

Re: [Asterisk-Users] callback on busy

2005-03-01 Thread Wojciech Tryc
Yes, it's relatively easy Contact me privately, if you need a hand W - Original Message - From: Paradise Dove [EMAIL PROTECTED] To: Asterisk Users Mailing List - Non-Commercial Discussion asterisk-users@lists.digium.com Sent: Tuesday, March 01, 2005 1:47 PM Subject: [Asterisk-Users]

Re: [Asterisk-Users] callback on busy

2005-02-04 Thread Andrew Thompson
Bartosz Jozwiak wrote: Hello everybody, I would like to implement callback function. When I call a person and his extension is busy I can press, for example, 5 and get a callback when his phone is not busy anymore. When I create a call file and copy it to spool call folder asterisk makes a call.