VBScript → Lua
The following function sets the "new voicemail indication" for a certain user or all users within a user group.
Please see the Introduction chapter for some usage instructions.
'------------------------------------------------------------------- ' SetNewVoicemailFlag ' ' This function sets the "new voicemail indication" for a single user ' or all users of a SwyxWare user group. ' ' Parameter: ' sUserOrGroup name of user or group ' ' Return: ' none '-------------------------------------------------------------------- Function SetNewVoicemailFlag ( sUserOrGroup ) PBXScript.OutputTrace "-------------> SetNewVoicemailFlag ( sUserOrGroup = " & sUserOrGroup & " )" Dim oUsers Set oUsers = g_PBXConfig.GetUserByAddress(sUserOrGroup) Dim oUser For Each oUser In oUsers PBXScript.OutputTrace "Found user " & User.Name oUser.NumberOfNewVoicemails = oUser.NumberofNewVoicemails + 1 Next PBXScript.OutputTrace "<------------- SetNewVoicemailFlag" End Function
This function makes use of the Server Script API functions PBXConfig.GetUserByAddress to resolve all users in the given group and PBXScript.OutputTrace to write trace information into the SwyxServer trace file.
This function was initially posted into this forum topic.
By Tom Wellige
Recommended Comments
There are no comments to display.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now