Lua → VBScript SwxWare v13.10
This function sets or returns the state of the script user's (for whom the current script is running) own busy redirection number, meaning the target of the redirection.
if (PBXUser.BusyRedirectNumber() == "100") then -- do something end -- configure on busy redirection target PBXUser.BusyRedirectNumber("200")
This function takes or returns a string value.
Please note, that you need to enable the on busy redirection using the PBXUser.BusyRedirect() function.
SwyxServer handles all telephone numbers as strings, so don't miss to use " ". You can use either a number, a user name or a group name as value.
There is a magic string "voicemail" to redirect all calls to the user's voicemail.
-- redirect all calls if user is busy to his voicemail PBXUser.BusyRedirect(true) PBXUser.BusyRedirectNumber("voicemail")
If your script should check how the user's redirection is configured, make sure it is placed above the on Busy Redirection rule in the Call Routing Manager list of rules. Otherwise your script will never be reached if the user has enabled his redirection.
By Tom Wellige