Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

New Field - IP Phone Group ID 1

Status
Not open for further replies.
Feb 18, 2005
58
US
On page 3 of the Station form in CM4 there is a field labeled "IP Phone Group ID" it will take a value of 1-999, does anyone know what this field is used for?
 
juandebobo,

this field indicates which group that extension belong to. groups are used for new features like group calling and so on. read this document to get an idea what to do with it.
 
Group id is used to make difrence between uses and what they can do in the 46xx.txt

################# OPTION ACCESS SETTINGS #################
##
## This setting restricts access to certain user options.
##
## When OPSTAT is set to 000, the user options
## are not accessible.
##
## When OPSTAT is set to 001, the user can only access
## the Log-Off Option.
##
## When OPSTAT is set to 010, the user can only access
## view-only options. The user cannot change any setting.
##
## When OPSTAT is set to 011, the user can only access
## view-only options and the Log-Off Option.
##
## When OPSTAT is set to 100, the user can access
## all options except the view-only options and
## the Log-Off option.
##
## When OPSTAT is set to 101, the user can access
## all options except the view-only options.
##
## When OPSTAT is set to 110, the user can access
## all the options except the Log-Off option.
##
## When OPSTAT is set to 111, the user can invoke
## any or all of the user options.
##
##
## GROUP ID = 0 THEN OPSTAT 111 (default)
## GROUP ID = 1 THEN OPSTAT 111
## GROUP ID = 2 THEN OPSTAT 000
## GROUP ID = 3 THEN OPSTAT 111 (Test Robin)
##
## When changed reset phone 2 times to make it permanant

IF $GROUP SEQ 1 goto ALLRIGHTS
IF $GROUP SEQ 2 goto NORIGHTS
IF $GROUP SEQ 3 goto ALLRIGHTS
SET OPSTAT 111
goto SKIPOPSTAT

# ALLRIGHTS
SET OPSTAT 111
goto SKIPOPSTAT

# NORIGHTS
SET OPSTAT 000
goto SKIPOPSTAT

# SKIPOPSTAT

##


Greets Peter
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top