The GROUP System Value
Issue 1 June 2010 71
3. Once the GROUP assignments are in place, edit the configuration file to allow each
telephone of the appropriate group to download its proper settings.
Here is an example of a settings file with telephones in three different groups - group "0" (the
default), group "1", and group "2":
## First check if this phone is in group 1. If it is, jump to the
tag GROUP1
##
IF $GROUP SEQ 1 goto GROUP1
##
## Now check if this phone is in group 2. If it is, jump to the tag
GROUP2
IF $GROUP SEQ 2 goto GROUP2
##
## The phone is not in either GROUP 1 or 2 so it is in GROUP 0
{specify settings unique to Group 0}
goto END
# GROUP1
## GROUP 1-only settings go here
{specify settings unique to Group 1}
goto END
# GROUP2
## GROUP 2-only settings go here
{specify settings unique to Group 2}
# END
## The settings here apply to all three groups
{specify settings common to all Groups}