Jump to content
  • IsLoopConfigured()

    IsLoopConfigured()

    Lua   → VBScript

     

    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")
    
        local bReturn = IsRedirectedFromByName(PBXUser.Name())
    
        PBXScript.OutputTrace ("bReturn = " .. tostring(bReturn))
        PBXScript.OutputTrace ("<------------- IsLoopConfigured")
    
        return bReturn
    end

     

    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 converted from VBScript into Lua from the initially posted version in 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.