Hi I was wondering if there are any special settings that I need to be able to transfer calls. Whenever I press the 'recall' button, I just here a click, and no ring-tone to transfer. in my debug log I get this : -------------------------- Feb 24 09:09:27 DEBUG[19216]: Exception on 10, channel 1 Feb 24 09:09:27 DEBUG[19216]: Got event Pulse Start(14) on channel 1 (index 0) Feb 24 09:09:27 DEBUG[19216]: Exception on 10, channel 1 Feb 24 09:09:27 DEBUG[19216]: Got event Event 65585(65585) on channel 1 (index 0) Feb 24 09:09:27 DEBUG[19216]: Pulse dial '1' -------------------------- Any ideas ? Herman
I get the impression that the transfer/flash/recall etc etc buttons don't always work - it seems to depend on what phone/firmware you are using. And possibly the version of asterisk. I am using BT102s and some generic voip phone. On the BT102 the transfer button will put the call on hold and give you a new line to call an extention with, however nothing happens when I call an extention. On the generic voip phone the transfer button does nothing. I have resorted to using # for blind xfer and *2 for attended xfer. Herman Cremer wrote:>Hi > >I was wondering if there are any special settings that >I need to be able to transfer calls. > >Whenever I press the 'recall' button, I just here a click, >and no ring-tone to transfer. >in my debug log I get this : > > >-------------------------- >Feb 24 09:09:27 DEBUG[19216]: Exception on 10, channel 1 >Feb 24 09:09:27 DEBUG[19216]: Got event Pulse Start(14) on channel 1 >(index 0) >Feb 24 09:09:27 DEBUG[19216]: Exception on 10, channel 1 >Feb 24 09:09:27 DEBUG[19216]: Got event Event 65585(65585) on channel 1 >(index 0) >Feb 24 09:09:27 DEBUG[19216]: Pulse dial '1' > >-------------------------- > >Any ideas ? > >Herman > > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > >
Herman <<Do you mind sharing where in the configs you have changed this ?>> Have a look at the options that are controlled by settings in features.conf. If these are what you want to control, I think you will find the options obvious. Bill Seddon Lyquidity Solutions Limited -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Herman Cremer Sent: February 24, 2005 10:58 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] CallTransfer Do you mind sharing where in the configs you have changed this ? -Herman On Thu, 2005-02-24 at 12:40, Mark Benson wrote:> I get the impression that the transfer/flash/recall etc etc buttons > don't always work - it seems to depend on what phone/firmware you are > using. And possibly the version of asterisk. > > I am using BT102s and some generic voip phone. On the BT102 thetransfer> button will put the call on hold and give you a new line to call an > extention with, however nothing happens when I call an extention. Onthe> generic voip phone the transfer button does nothing. > > I have resorted to using # for blind xfer and *2 for attended xfer. > > Herman Cremer wrote: > > >Hi > > > >I was wondering if there are any special settings that > >I need to be able to transfer calls. > > > >Whenever I press the 'recall' button, I just here a click, > >and no ring-tone to transfer. > >in my debug log I get this : > > > > > >-------------------------- > >Feb 24 09:09:27 DEBUG[19216]: Exception on 10, channel 1 > >Feb 24 09:09:27 DEBUG[19216]: Got event Pulse Start(14) on channel 1 > >(index 0) > >Feb 24 09:09:27 DEBUG[19216]: Exception on 10, channel 1 > >Feb 24 09:09:27 DEBUG[19216]: Got event Event 65585(65585) on channel1> >(index 0) > >Feb 24 09:09:27 DEBUG[19216]: Pulse dial '1' > > > >-------------------------- > > > >Any ideas ? > > > >Herman > > > > > >_______________________________________________ > >Asterisk-Users mailing list > >Asterisk-Users@lists.digium.com > >http://lists.digium.com/mailman/listinfo/asterisk-users > >To UNSUBSCRIBE or update options visit: > > http://lists.digium.com/mailman/listinfo/asterisk-users > > > > > > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users_______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
On Thu, 2005-02-24 at 10:20 +0200, Herman Cremer wrote:> Hi > > I was wondering if there are any special settings that > I need to be able to transfer calls. > > Whenever I press the 'recall' button, I just here a click, > and no ring-tone to transfer. > in my debug log I get this :Probably your phone uses too short flash time. You have a couple of options, * change your phone to use a longer flash time * change asterisk to accept a shorter flash time * signal the flash some other way (ie, manually press the hook and lift again * Use the # key to do the transfer (requires the t or T on the dial command I ended up (finally) succeeding in the second option, which by editing zaptel with this patch: diff -ur zaptel/zaptel.h zaptel.mine/zaptel.h --- zaptel/zaptel.h Tue Nov 23 10:26:36 2004 +++ zaptel.mine/zaptel.h Tue Nov 23 17:21:54 2004 @@ -863,7 +863,7 @@ #define ZT_DEFAULT_PULSEAFTERTIME 750 /* 750ms between dial pulse digits */ #define ZT_MINPULSETIME (15 * 8) /* 15 ms minimum */ -#define ZT_MAXPULSETIME (150 * 8) /* 150 ms maximum */ +#define ZT_MAXPULSETIME (75 * 8) /* 150 ms maximum */ #define ZT_PULSETIMEOUT ((ZT_MAXPULSETIME / 8) + 50) #define ZT_RINGTRAILER (50 * 8) /* Don't consider a ring "over" until it's been gone at least this You should probably apply that manually, due to line wraps etc.. Would be nice if this was controlled from the config files... Regards, Adam -- -- Adam Goryachev Website Managers Ph: +61 2 9345 4395 adam@websitemanagers.com.au Fax: +61 2 9345 4396 www.websitemanagers.com.au
> -----Original Message----- > From: asterisk-users-bounces@lists.digium.com > [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of > Mark Benson > Sent: Thursday, 24 February 2005 8:41 PM > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: Re: [Asterisk-Users] CallTransfer > > I get the impression that the transfer/flash/recall etc etc > buttons don't always work - it seems to depend on what > phone/firmware you are using. And possibly the version of asterisk. > > I am using BT102s and some generic voip phone. On the BT102 > the transfer button will put the call on hold and give you a > new line to call an extention with, however nothing happens > when I call an extention. On the generic voip phone the > transfer button does nothing. > > I have resorted to using # for blind xfer and *2 for attended xfer. >On the BT102's this got me initially to until I had a play. When transfering a call with the BT series phone after you hit the transfer button and it puts the call on hold and you dial the extension you wish to transfer to you must hit the Send button for it to send the call across. Its an attended transfer, if the other person says take a message you can get the call back and take a message. James
asterisk-users-request@lists.digium.com is believed to have said:>I am using BT102s and some generic voip phone. On the BT102 the transfer >button will put the call on hold and give you a new line to call an >extention with, however nothing happens when I call an extention. On the >generic voip phone the transfer button does nothing.Well, I am using BT 102's and the transfer button works. We have to push transfer and then dial the number we want to transfer the call to. It worked on the stock phones; I updated the fw to 1.0.5.20 for other reasons (a problem with message waiting indication). HTH Aldo
Yep, works for me to. I'm using revision 1.0.5.22 software and the asterisk@home solution. I think it has worked since revision .16 Cheers, Dean -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Aldo Bergamini Sent: Thursday, February 24, 2005 7:55 AM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] Re: CallTransfer asterisk-users-request@lists.digium.com is believed to have said:>I am using BT102s and some generic voip phone. On the BT102 thetransfer>button will put the call on hold and give you a new line to call an >extention with, however nothing happens when I call an extention. Onthe>generic voip phone the transfer button does nothing.Well, I am using BT 102's and the transfer button works. We have to push transfer and then dial the number we want to transfer the call to. It worked on the stock phones; I updated the fw to 1.0.5.20 for other reasons (a problem with message waiting indication). HTH Aldo _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Grandstream write the software but for reason anything later than the 1.0.5.16 has only been available fro the betatest section. -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Mark Benson Sent: Thursday, February 24, 2005 9:29 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Re: CallTransfer I'm only just getting my head round asterisk - so the phones themselves have taken a back seat - I have only recently upgraded the phones to r .16 - so maybe they do work now. I'll test as soon as all my users have moved their phones over to the asterisk server. I only found out about the r .22 release today. Who writes the firmware? I'm guessing it isn't grandstream as they are only on .16 and they are running .22 as beta - its not important - just curious. And sorry Herman - I would have replied sooner but work got in the way - yeah features.conf - thats what I was gonna say. dean collins wrote:>Yep, works for me to. I'm using revision 1.0.5.22 software and the >asterisk@home solution. > >I think it has worked since revision .16 > > >Cheers, >Dean > > >-----Original Message----- >From: asterisk-users-bounces@lists.digium.com >[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Aldo >Bergamini >Sent: Thursday, February 24, 2005 7:55 AM >To: asterisk-users@lists.digium.com >Subject: [Asterisk-Users] Re: CallTransfer > >asterisk-users-request@lists.digium.com is believed to have said: > > > >>I am using BT102s and some generic voip phone. On the BT102 the >> >> >transfer > > >>button will put the call on hold and give you a new line to call an >>extention with, however nothing happens when I call an extention. On >> >> >the > > >>generic voip phone the transfer button does nothing. >> >> > >Well, > >I am using BT 102's and the transfer button works. > >We have to push transfer and then dial the number we want to transfer >the >call to. It worked on the stock phones; I updated the fw to 1.0.5.20for>other reasons (a problem with message waiting indication). > >HTH >Aldo > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > >_______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users