Alexis FECOURT
2005-Jun-14 04:57 UTC
[Asterisk-Users] Features.conf for secretary function
Hi, I am trying to use the attended transfer. So I put this in my feature.conf: [general] [featuremap] atxfer => *0 blindxfer => #0 I completly restart asterik, and not just make a RELOAD. But during a call, when I press # it runs a blind transfer and if I press * I am disconnected. I am using the CVS version of * get as explain here http://www.voip-info.org/tiki-index.php?page=Asterisk+Download Please do you have any advise ? Alexis F?court. For info: My sip.conf: [general] context=from-sip port=5060 bindaddr=0.0.0.0 dtmfmode=rfc2833 disallow=all allow=ulaw allow=alaw [100] type=friend context=from-sip host=dynamic username=100 [106] type=friend host=dynamic context=from-sip username=106 Extension.conf: [general] [globals] include => from-sip [from-sip] exten => _10X,1,Answer exten => _10X,2,Dial(SIP/${EXTEN},20,htT) exten => _10X,3,Hangup
Michiel van Baak
2005-Jun-14 05:09 UTC
[Asterisk-Users] Features.conf for secretary function
On 13:57, Tue 14 Jun 05, Alexis FECOURT wrote:> Hi, > I am trying to use the attended transfer. So I put this in my feature.conf: > > [general] > [featuremap] > atxfer => *0 > blindxfer => #0 ><snip></snip>> exten => _10X,2,Dial(SIP/${EXTEN},20,htT) > exten => _10X,3,Hangup >Hi, The problem is in that h param. If you do a 'show application dial' on the asterisk CLI you will read this: 'h' -- allow callee to hang up by hitting *. Remove it, and you'll be fine Michiel van Baak
On 13:57, Tue 14 Jun 05, Alexis FECOURT wrote:>> Hi, >> I am trying to use the attended transfer. So I put this in my feature.conf: >> >> [general] >> [featuremap] >> atxfer => *0 >> blindxfer => #0 >> > ><snip></snip>>> exten => _10X,2,Dial(SIP/${EXTEN},20,htT) >> exten => _10X,3,Hangup >> > >> Hi, > > The problem is in that h param. > If you do a 'show application dial' on the asterisk CLI you > will read this: > 'h' -- allow callee to hang up by hitting *. > > Remove it, and you'll be fine > > Michiel van BaakHi, That is not the problem. I have to put tT to make a transfer, but the pad composition to dial to make it should be defined in feature.conf I made some test by putting hH in the Dial command options and "disconnect => *0" in the feature.conf, but with that configuration I just need to press * and not *0 to be disconnected. My problem comes from the fact that my featuremap is not used. I read in google groups: "This only works on CVS version of *, not the stable 1.0 -- Michiel van Baak" So I followed the CVS way of getting * from the wiki on voip-info.org... Nevertheless, no result... Alexis F?court.