VBScript → Lua
The following function returns True if the current script user can be found in the list of users, where the current call has already been.
Please see the Introduction chapter for some usage instructions.
'---------------------------------------------------------------- ' IsLoopConfigured ' ' Checks if current script user is in the PreviousScripts list, ' i.e. the call was previously already in that user's call routing. ' So chances are high that this is a loop. ' ' Parameter: ' ' Return: ' boolean true - found in PreviousScripts list ' false - not found in PreviousScripts list. '---------------------------------------------------------------- Function IsLoopConfigured PBXScript.OutputTrace "-------------> IsLoopConfigured" Dim bReturn bReturn = IsRedirectedFromByName(PBXUser.Name) IsLoopConfigured = bReturn PBXScript.OutputTrace "bReturn = " & bReturn PBXScript.OutputTrace "<------------- IsLoopConfigured" End Function
This function makes use of the IsRedirectedFromByName function, which is also part of the VBScript Function Collection. It also makes use of the Server Script API function 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