VBScript → Lua
This property takes or returns the "one way" conference status of the current call. If the call is transfered into a conference this flag defines, if the caller is in "listen only" mode or not.
' Retrieving the current oneway conference status Dim bOneWayConference bOneWayConference = IpPbx.OneWayConference ' Setting the oneway conference status IpPbx.OneWayConference = True
This property takes or returns a boolean value.
A "one way" conference is a conference where the caller is able to listen only. His own voice will automatically be muted.
If you want to enable the "one way" conference for this user, you need to set this property before actually connecting the call to the conference by using the Connect To block.
It is also possible to use a special Feature Codes when connecting the call to a conference. The feature code for the one way conference can be requested within the call routing script by using the OneWayConferenceSuffix() function.
By Tom Wellige