Limit Evesdrop to only certain extensions, possible?

Status
Not open for further replies.

bdmonsey

Member
Jul 23, 2019
146
6
18
42
Is there a way to block manager at the business from listening in to certain extensions in business by dialing in *33 evesdrop ?
 

Adrian Fretwell

Well-Known Member
Aug 13, 2017
1,414
376
83
There are probably lots of different ways you could do this. Obviously, the first line of defence is the PIN number, but you could alter the regex in the condition to prevent it matching an extension. For example if you never want extensions 201 or 203 to be eavesdropped then add a negative look ahead ((?!...)) to the eavesdrop condition in the dialplan manager:

^\*33(?!201|203)(\d{2,7})$
 
Status
Not open for further replies.