I am trying to determine if TL supports whisper monitoring or barging. We have sales call center clients that will require this feature.
Can anyone answer confirm this feature is available?
whisper and barging
If I understand this correctly it is a question of how to execute barging in/whisper through the web GUI or some other way. "Some other way" in Thirdlane is creating a script - 1) you can write your own and "plug" it into the GUI by associating it with a Feature Code or 2) we could do that for you knowing the specific requirements.
Best regards,
Alex
Alex, I think what Scott
Alex,
I think what Scott (sbutera) was looking for is the ability for a remote user to perform a whisper/barging from their remote phone. Yes a feature code type config would be perfect, enter feature code then users extention. What would it take to accomplish this?
Thank you
Michael
look at applications
look at applications
ChanSpy
ExtenSpy
you should be able to write a custom script + feature extension to accomplish your tasks
ExtenSpy
I have successfully used ExtenSpy in other deployments, but I am having trouble making it work inside the Thirdlane architecture.
Any assistance would be appreciated.
I have set up a script (and a feature code to point at that script). The script looks like this:
exten => s,1,ExtenSpy(101@from-inside-test)
no dice. I hear the BEEP but no spying.
I have tried various incarnations of the same thing. Here are the attempts:
exten => s,1,ExtenSpy(101@local-extensions-test)
or
exten => s,1,ExtenSpy(101@from-inside-test)
or
exten => s,1,ExtenSpy(101-test@from-inside-test)
or
exten => s,1,ExtenSpy(101-test@local-extensions-test)
or
exten => s,1,ExtenSpy(101)
In each case I hear the BEEP indicating that Asterisk is spying, but the call on 101 is not being spyed. All I hear is dead air.
I am pretty sure that this has to do with me referencing the wrong context. The entry in sip.conf for the extension in question is:
[101-test]
qualify=yes
nat=yes
pickupgroup=3
callerid=Test <101>
context=from-inside-test
call-limit=9
canreinvite=no
vmexten=101
secret=secret
username=101-test
host=dynamic
subscribecontext=local-extensions-test
callgroup=3
dtmfmode=rfc2833
type=friend
mailbox=101@default-test
disallow=all
allow=ulaw
allow=alaw
Thanks
but your extensions are often
but your extensions are often called from several contexts and sometimes chan_local gets invoked.
have you considered chanspy?
use the following script wit
use the following script wit an argument for the password
exten => s,1,Authenticate(${ARG1})
exten => s,n,Read(SPYNUM,vm-extension)
exten => s,n,ChanSpy(SIP/${SPYNUM}${TL_DASH}${tenant},q)
Im only using it ChanSpy i never tried ExtenSpy
Thirdlane is just a GUI on top of Asterisk. Not all the functionality of Asterisk has been exposed. You always can manually do things via the config files if you want to do something that TL hasn't exposed.
That said, I don't think that is exposed via the GUI.
-Matt