Jump to content
  • IsLoopConfigured

    IsLoopConfigured

    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.

     

     


    Tom Wellige
     Share


     Share




    User Feedback

    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 account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.