<HTML>
<HEAD>
<TITLE>Re: [Asterisk-Users] when I press "transfer" -> blind -> 700 . The user is not able to hear what extension the call was parked on</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>This is the way blind transfers work. The transferring party doesn’t get to hear anything. For call parking, you have no choice but to use supervised transfer if you want the user to hear the parking space. If it worked before, it must have been dumb luck with the timing.<BR>
<BR>
<BR>
On 6/22/06 10:24 AM, "sdgesa gaeharth" <pollux1234567890@yahoo.com> wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>I am using Polycom 501s with asterisk 1.2.4.<BR>
<BR>
When transfering to call parking wih "#1" -> 700 the user is able to hear asterisk tell him what extension the call was parked on. However, when I press "transfer" -> blind -> 700 . The user is not able to hear what extension the call was parked on. It seems like the polycom is hanging up before asterisk is able to finish telling the user the extension. I can not tell if this is a problem with the phone, asterisk, transfers or call parking. This problem just started happening a few weeks ago. Before then , blind transfer worked fine. It must be a config issue somewhere<BR>
<BR>
using "#1" -> 700:<BR>
-- Started music on hold, class 'default', on channel 'Zap/1-1'<BR>
== Parked Zap/1-1 on 701. Will timeout back to extension [incoming] s, 1 in 45 seconds<BR>
-- Added extension '701' priority 1 to parkedcalls<BR>
-- Playing 'digits/7' (language 'en')<BR>
-- Executing ParkedCall("SIP/1000-300e", "701") in new stack<BR>
-- Stopped music on hold on Zap/1-1<BR>
-- Channel SIP/1000-300e connected to parked call 701<BR>
-- Hungup 'Zap/1-1'<BR>
<BR>
using "transfer" -> blind -> 700<BR>
-- Started music on hold, class 'default', on channel 'Zap/1-1'<BR>
== Parked Zap/1-1 on 701. Will timeout back to extension [incoming] s, 1 in 45 seconds<BR>
-- Added extension '701' priority 1 to parkedcalls<BR>
-- Playing 'digits/7' (language 'en')<BR>
-- Playing 'digits/0' (language 'en')<BR>
-- Playing 'digits/1' (language 'en')<BR>
== Spawn extension (local-access, 97037551131, 1) exited non-zero on 'SIP/1000-d779'<BR>
-- Executing ParkedCall("SIP/1000-5f5a", "701") in new stack<BR>
-- Stopped music on hold on Zap/1-1<BR>
-- Channel SIP/1000-5f5a connected to parked call 701<BR>
-- Started music on hold, class 'default', on channel 'Zap/1-1'<BR>
-- Stopped music on hold on Zap/1-1<BR>
<BR>
<BR>
Even though the user can not hear the extension the call was parked on, the call can be retrieved by guessing. Which I am assumming means the call was successfully parked.<BR>
<BR>
Digit map:<BR>
[2-9]11|0T|011xxx.T|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxT|1xxxT<BR>
<BR>
extensions.conf:<BR>
[general]<BR>
static=yes<BR>
writeprotect=no<BR>
autofallthrough=yes<BR>
clearglobalvars=no<BR>
priorityjumping=no<BR>
<BR>
[globals]<BR>
ATTENDANT=SIP/1006&SIP/1002&SIP/1011&SIP/1009<BR>
OUTBOUNDTRUNK=ZAP/g1<BR>
<BR>
[meetme-ext]<BR>
exten => 600,1,MeetMe(1234|Mp|98765)<BR>
<BR>
[extentions]<BR>
include => parkedcalls<BR>
include => meetme-ext<BR>
include => direct-to-voicemail<BR>
exten => _10XX,1,Dial(SIP/${EXTEN},20,t)<BR>
exten => _10XX,n,Answer<BR>
exten => _10XX,n,VoiceMail(u${EXTEN}@voicemail)<BR>
exten => _10XX,n,Hangup()<BR>
<BR>
[voicemail]<BR>
exten => _910XX,1,Wait(1)<BR>
exten => _910XX,n,VoiceMailMain(${EXTEN:1}@voicemail)<BR>
<BR>
[direct-to-voicemail]<BR>
exten => _810XX,1,VoiceMail(u${EXTEN:1}@voicemail)<BR>
exten => _810XX,n,Hangup()<BR>
<BR>
[local]<BR>
include => extentions<BR>
include => voicemail<BR>
<BR>
[incoming]<BR>
exten => s,1,Answer<BR>
exten => s,n,Wait(2)<BR>
exten => s,n,Set(TIMEOUT(response)=15)<BR>
exten => s,n,Background(intro)<BR>
exten => s,n,WaitExten()<BR>
exten => s,n,Playback(vm-goodbye)<BR>
exten => s,n,Hangup()<BR>
exten => 0,1,Dial(${ATTENDANT},20,t)<BR>
exten => 0,n,Playback(vm-nobodyavail)<BR>
exten => 0,n,Hangup()<BR>
exten => 1,1,Directory(voicemail,extentions,f)<BR>
exten => 2,1,Directory(voicemail,extentions)<BR>
include => meetme-ext<BR>
include => extentions<BR>
exten => i,1,Playback(pbx-invalid)<BR>
exten => i,2,Goto(incoming,s,1)<BR>
exten => t,1,Playback(vm-goodbye)<BR>
exten => t,2,Hangup()<BR>
<BR>
[outbound]<BR>
ignorepat => 9<BR>
include => parkedcalls<BR>
exten => _9XXXXXXXXXX,1,Dial(${OUTBOUNDTRUNK}/ww${EXTEN:1},30,T)<BR>
exten => _9XXXXXXXXXX,2,Congestion()<BR>
exten => _9XXXXXXXXXX,102,Congestion()<BR>
exten => _91900NXXXXXX,1,Congestion()<BR>
exten => _91976NXXXXXX,1,Congestion()<BR>
exten => _91[123456789]XXNXXXXXX,1,Dial(${OUTBOUNDTRUNK}/ww${EXTEN:1},30,T)<BR>
exten => _91[123456789]XXNXXXXXX,2,Congestion()<BR>
exten => _91[123456789]XXNXXXXXX,102,Congestion()<BR>
exten => 9911,1,Dial(${OUTBOUNDTRUNK}/ww911)<BR>
exten => 9411,1,Dial(${OUTBOUNDTRUNK}/ww411)<BR>
exten => 0,1,Dial(${OUTBOUNDTRUNK}/ww0)<BR>
<BR>
[local-access]<BR>
include => local<BR>
include => outbound<BR>
<BR>
<BR>
features.conf:<BR>
[general]<BR>
parkext => 700 ; What ext. to dial to park<BR>
parkpos => 701-720 ; What extensions to park calls on<BR>
context => parkedcalls ; Which context parked calls are in<BR>
parkingtime => 45 ; Number of seconds a call can be parked for<BR>
<BR>
[featuremap]<BR>
blindxfer => #1<BR>
<BR>
Thanks<BR>
<BR>
<BR>
<BR>
<HR ALIGN=CENTER SIZE="1" WIDTH="100%">Yahoo! Groups gets better. Check out the new email design. <a href="http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=41142/*http://groups.yahoo.com/local/newemail.html"><http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=41142/*http://groups.yahoo.com/local/newemail.html></a> Plus there’s much more to come. <BR>
<HR ALIGN=CENTER SIZE="3" WIDTH="95%"></SPAN></FONT><FONT SIZE="2"><FONT FACE="Monaco, Courier New"><SPAN STYLE='font-size:10.0px'>_______________________________________________<BR>
--Bandwidth and Colocation provided by Easynews.com --<BR>
<BR>
Asterisk-Users mailing list<BR>
To UNSUBSCRIBE or update options visit:<BR>
<a href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a><BR>
</SPAN></FONT></FONT></BLOCKQUOTE><FONT SIZE="2"><FONT FACE="Monaco, Courier New"><SPAN STYLE='font-size:10.0px'><BR>
</SPAN></FONT></FONT>
</BODY>
</HTML>