Yealink Forums
Populating account.1.label using a variable - Printable Version

+- Yealink Forums (http://forum.yealink.com/forum)
+-- Forum: IP Phone Series (/forumdisplay.php?fid=4)
+--- Forum: Configuration (/forumdisplay.php?fid=24)
+--- Thread: Populating account.1.label using a variable (/showthread.php?tid=46008)



Populating account.1.label using a variable - jleyco - 08-18-2022 02:31 AM

Is there any way to Populate the phone's account.1.label using a variable instead of manually entering the label?

Thanks,
Joe


RE: Populating account.1.label using a variable - complex1 - 08-18-2022 03:19 PM

(08-18-2022 02:31 AM)jleyco Wrote:  Is there any way to Populate the phone's account.1.label using a variable instead of manually entering the label?

Thanks,
Joe

Hi Joe,

Yes there is.
Here is an example of part of a provisioning template.

Code:
account.1.enable = 1
account.1.label = %%extension_first_name%%
account.1.display_name = %%extension_first_name%% %%extension_last_name%%
account.1.auth_name = %%extension_auth_id%%
account.1.user_name = %%extension_number%%
account.1.password = %%extension_auth_pw%%



RE: Populating account.1.label using a variable - jleyco - 08-18-2022 08:19 PM

Thank you Complex1!