Yealink Forums
T41 Park command. - Printable Version

+- Yealink Forums (http://forum.yealink.com/forum)
+-- Forum: IP Phone Series (/forumdisplay.php?fid=4)
+--- Forum: T4x Series (/forumdisplay.php?fid=31)
+--- Thread: T41 Park command. (/showthread.php?tid=41241)



T41 Park command. - Chris Barron - 10-25-2017 11:45 AM

Hi - on a t41 firmware 36.82.0.20 I have call park setup using the config below.

features.call_park.park_mode = 2
features.call_park.enable = 1
features.call_park.park_code = 700
features.call_park.park_retrieve_code = 701
linekey.4.type = 10
linekey.4.value = 701
linekey.4.label = P701
linekey.4.line = 1

when I attempt to retrieve a parked call from 701, the phone sends 700701.

It works Ok on 36.81.0.110.


RE: T41 Park command. - anonymous1712222627012 - 10-26-2017 10:03 AM

Hi Chris,
Here's your configuration,

features.call_park.park_mode = 2
features.call_park.enable = 1
features.call_park.park_code = 700
features.call_park.park_retrieve_code = 701

You have already set the park value to 700 and retrieve value to 701,
but in the line key 4, you set the call park value to 701 again.

linekey.4.type = 10 (this key type means call park, not retrieve)
linekey.4.value = 701 (no need to fill in the value as you have already set the value previously)
linekey.4.label = P701
linekey.4.line = 1

You need to update the linekeys configuration as below,

linekey.2.type = 10 (config the linekey 2 as a park key)
linekey.2.line = 1
linekey.2.label = Park

linekey.3.type = 56 (config the linekey 3 as a retrieve key)
linekey.3.line = 1
linekey.3.label = Retrieve

Kind Regards
Samuel Wang


RE: T41 Park command. - Chris Barron - 10-31-2017 03:55 PM

Hi chaps, I thought that might be your response - however
a) the setup i need works ok on .110 firmware.
b) in Bicom/Asterisk we have to configure each retrieve key as type 10 otherwise its not active ie. park 1 = 701 park 2 = 702.

The problem only exists if I use the softkey 'park'
If I set a Blf key as type 10 and value 700 i can park a call - the pbx then chooses the first park slot e;g 701;

Assuming the softkey output is filtered via the phones dial plan i could possibly write a statement <7007:7> to strip off the unwanted 700.

Chris


RE: T41 Park command. - anonymous1712222627012 - 11-02-2017 02:41 AM

Hi Chris,
This is your configuration,

features.call_park.park_mode = 2
features.call_park.enable = 1
features.call_park.park_code = 700
features.call_park.park_retrieve_code = 701
linekey.4.type = 10
linekey.4.value = 701
linekey.4.label = P701
linekey.4.line = 1

when you press linekey 4, it's type 10, pre-defined with park code 700, and also you specified the value 701 to this key, that's why it sends 700701.

If you wish to strip off the unwanted 700, you can leave the park code empty in below command,
features.call_park.park_code = 700 (leave this value blank)

Regards
Samuel