I was able to implement every features in the plugin and everything is working great. I would like to implement the latest most important feature, the number block mask. I found this topic in the forum attached below but no matter what I do I get the call to go thru. Do I need to run an event based on the call or the number block mask alone should work? I tested with my cellular number by itself as well and still not working. Any suggestion is very much appreciated since I'm getting lot of telemarketing calls lately.
By the way, in the log this is what I see: I have masked the name
12/7/2022 11:48:45 AM
UltraCID3
Informational
Incoming call from XXXXX,XXXX (326) 678-0029
12/7/2022 11:48:44 AM
UltraCID3
Informational
New incoming call detected ...
By the way, in the log this is what I see: I have masked the name
12/7/2022 11:48:45 AM
UltraCID3
Informational
Incoming call from XXXXX,XXXX (326) 678-0029
12/7/2022 11:48:44 AM
UltraCID3
Informational
New incoming call detected ...
HTML Code:
My caller Id Number Block Mask regular expression looks like this: ^8(00|88|77|66) It blocks any incoming call that starts with 800, 888, 877 or 866. If you wanted to block callers from 123-456-0000 though 123-456-9999, then modify it as follows: ^(?:8(00|88|77|66)|123456\d{4}) If you only want to block incoming calls from specific area code and exchange, then use: ^(?:123456|456789)\d{4} *Note: The above regex blocks calls from 123-456-0000 though 123-456-9999 and 456-789-0000 through 456-789-9999 Put the regular expressions into https://regex101.com/ if you want to test them (and get an explanation on what they are doing). I hope this helps.
Comment