I've got a confbridge set up which works if dialed locally: -- Executing [266 at internal:1] Answer("DAHDI/1-1", "") in new stack -- Executing [266 at internal:2] SendDTMF("DAHDI/1-1", "1") in new stack -- Executing [266 at internal:3] ConfBridge("DAHDI/1-1", "1") in new stack -- <DAHDI/1-1> Playing 'conf-onlyperson.ulaw' (language 'en') ....... extensions.conf: [globals] ....... GOTO_ON_BLINDXFR="internal,266,1" features.conf: [featuremap] blindxfer => #1 But: -- Executing [s at DialOut:14] Dial("DAHDI/1-1", "motif/xxxx/+1234567890a at voice.google.com,,rTt") in new stack -- Called motif/xxxx/+1234567890a at voice.google.com -- Motif/+1234567890a at voice.google.com-688c is proceeding passing it to DAHDI/1-1 -- Motif/+1234567890a at voice.google.com-688c answered DAHDI/1-1 -- Started music on hold, class 'default', on Motif/+123456789a at voice.google.com-688c -- <DAHDI/1-1> Playing 'pbx-transfer.ulaw' (language 'en') [Dec 17 09:46:59] WARNING[19083][C-000000be]: features.c:2550 builtin_blindtransfer: No digits dialed. -- <DAHDI/1-1> Playing 'pbx-invalid.ulaw' (language 'en') I'm expecting the blind transfer to GOTO internal,266,1. If I input 266 at the transfer dial tone, the blind transfer occurs. Do I have this set up incorrectly? sean
On Wed, Dec 17, 2014 at 1:09 PM, sean darcy <seandarcy2 at gmail.com> wrote:> I've got a confbridge set up which works if dialed locally: > > -- Executing [266 at internal:1] Answer("DAHDI/1-1", "") in new stack > -- Executing [266 at internal:2] SendDTMF("DAHDI/1-1", "1") in new stack > -- Executing [266 at internal:3] ConfBridge("DAHDI/1-1", "1") in new stack > -- <DAHDI/1-1> Playing 'conf-onlyperson.ulaw' (language 'en') > ....... > > > extensions.conf: > > [globals] > ....... > GOTO_ON_BLINDXFR="internal,266,1" > > features.conf: > > [featuremap] > blindxfer => #1 > > But: > > -- Executing [s at DialOut:14] Dial("DAHDI/1-1", > "motif/xxxx/+1234567890a at voice.google.com,,rTt") in new stack > -- Called motif/xxxx/+1234567890a at voice.google.com > -- Motif/+1234567890a at voice.google.com-688c is proceeding passing it to > DAHDI/1-1 > -- Motif/+1234567890a at voice.google.com-688c answered DAHDI/1-1 > -- Started music on hold, class 'default', on > Motif/+123456789a at voice.google.com-688c > -- <DAHDI/1-1> Playing 'pbx-transfer.ulaw' (language 'en') > [Dec 17 09:46:59] WARNING[19083][C-000000be]: features.c:2550 > builtin_blindtransfer: No digits dialed. > -- <DAHDI/1-1> Playing 'pbx-invalid.ulaw' (language 'en') > > I'm expecting the blind transfer to GOTO internal,266,1. > > If I input 266 at the transfer dial tone, the blind transfer occurs. > > Do I have this set up incorrectly?https://wiki.asterisk.org/wiki/display/AST/Asterisk+Standard+Channel+Variables "${GOTO_ON_BLINDXFR} - Transfer to the specified context/extension/priority after a blind transfer (use ^ characters in place of | to separate context/extension/priority when setting this variable from the dialplan)" Try using ^ characters as it mentions there. -- Rusty Newton Digium, Inc. | Community Support Manager 445 Jan Davis Drive NW - Huntsville, AL 35806 - US direct: +1 256 428 6200 Check us out at: http://digium.com & http://asterisk.org
On 12/19/2014 09:42 AM, Rusty Newton wrote:> On Wed, Dec 17, 2014 at 1:09 PM, sean darcy <seandarcy2 at gmail.com> wrote: >> I've got a confbridge set up which works if dialed locally: >> >> -- Executing [266 at internal:1] Answer("DAHDI/1-1", "") in new stack >> -- Executing [266 at internal:2] SendDTMF("DAHDI/1-1", "1") in new stack >> -- Executing [266 at internal:3] ConfBridge("DAHDI/1-1", "1") in new stack >> -- <DAHDI/1-1> Playing 'conf-onlyperson.ulaw' (language 'en') >> ....... >> >> >> extensions.conf: >> >> [globals] >> ....... >> GOTO_ON_BLINDXFR="internal,266,1" >> >> features.conf: >> >> [featuremap] >> blindxfer => #1 >> >> But: >> >> -- Executing [s at DialOut:14] Dial("DAHDI/1-1", >> "motif/xxxx/+1234567890a at voice.google.com,,rTt") in new stack >> -- Called motif/xxxx/+1234567890a at voice.google.com >> -- Motif/+1234567890a at voice.google.com-688c is proceeding passing it to >> DAHDI/1-1 >> -- Motif/+1234567890a at voice.google.com-688c answered DAHDI/1-1 >> -- Started music on hold, class 'default', on >> Motif/+123456789a at voice.google.com-688c >> -- <DAHDI/1-1> Playing 'pbx-transfer.ulaw' (language 'en') >> [Dec 17 09:46:59] WARNING[19083][C-000000be]: features.c:2550 >> builtin_blindtransfer: No digits dialed. >> -- <DAHDI/1-1> Playing 'pbx-invalid.ulaw' (language 'en') >> >> I'm expecting the blind transfer to GOTO internal,266,1. >> >> If I input 266 at the transfer dial tone, the blind transfer occurs. >> >> Do I have this set up incorrectly? > > https://wiki.asterisk.org/wiki/display/AST/Asterisk+Standard+Channel+Variables > > "${GOTO_ON_BLINDXFR} - Transfer to the specified > context/extension/priority after a blind transfer (use ^ characters in > place of | to separate context/extension/priority when setting this > variable from the dialplan)" > > Try using ^ characters as it mentions there. >Thanks for the response, but no joy: == Setting global variable 'GOTO_ON_BLINDXFER' to 'internal^266^1' <DAHDI/1-1> Playing 'pbx-transfer.ulaw' (language 'en') [Dec 20 15:12:03] WARNING[12336][C-00000012]: features.c:2550 builtin_blindtransfer: No digits dialed. sean