Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VoiceMail Pro Anonymous Caller

Status
Not open for further replies.

martinnystrom

Programmer
Sep 10, 2013
56
SE
Hello,

Does anyone have any idea of how I can identify callers who use a hidden number? I've done some testing and I have not yet figured out a way.
I have checked in VBScript if the $CLI is null, if it's numeric, if it has the value WITHHELD and so on but nothing have really done the trick.
It is obviously not null, and it is not numeric. So what can I try?
 
A ! character in Incoming call route will match against withheld number calls, do the routing there :)



"No problem monkey socks
 
Sorry I do not follow you now?

This is something I have to do in VM Pro.
 
Andy said perform the routing from the IP Office Incoming call route. Use ! to match the call as with held CLI and send the call into VM Pro that way.

ACSS - SME
General Geek

 
· Incoming CLI: Default = Blank (Match all)
Enter a number to match the caller's ICLID provided with the call. This field is matched left-to-right. Number options are:
· Full telephone number.
· Partial telephone number, for example just the area code.
· ! : Matches calls where the ICLID was withheld.
· ? : for number unavailable.
· Blank for all.

my SIP provider sends the word "anonymous" along so that is what I put into my ICLID field. If it doesn't work then you need to trace with Monitor to find the information needed

Joe W.

FHandw, ACSS (SME), ACIS (SME)



“Quality is never an accident; it is always the result of high intention, sincere effort, intelligent direction and skillful execution; it represents the wise choice of many alternatives.”
 
I actually solved this with VBScript Action

Code:
Dim num
num = $CLI

if IsNumeric(num) Then

' Number is displayed

else

' Number is hidden

end if
 
a lot more work but it works. That is IPO for you more than 1 way to make things work.

Joe W.

FHandw, ACSS (SME), ACIS (SME)



“Quality is never an accident; it is always the result of high intention, sincere effort, intelligent direction and skillful execution; it represents the wise choice of many alternatives.”
 
I had to do it inside a VM Pro module with only one incomming number and one ICR.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top