Author Topic: Call Block (*67+number) = unknown fixed  (Read 6968 times)

jbaker

  • Newbie
  • *
  • Offline Offline
  • Posts: 1
    • View Profile
Call Block (*67+number) = unknown fixed
« on: March 28, 2006, 12:28:51 PM »
Hi everyone, i started noticing that people at our office were makeing a bunch of unknown phone calls. i took a look into the logs and noticed that anything that didnt begin with a number was coming up as unknown. so i looked into the driver file: currently using the Norstar (M3) driver.

i changed the line from:
var reNumber = /.*(DIGITS DIALED|CALLING NUMBER)\s+(\d+)\b/;

to

var reNumber = /.*(DIGITS DIALED|CALLING NUMBER)\s+(\W?\d+)\b/;

Created my own version of the driver file and did a reparse... everything works great. (not sure if you should incorporate the \W? or not.

Hope this helps,
Jack.