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.



    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.