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.



    Guest
    Add a comment...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.