Call Whitelist

skeelkat

New member
Hi Guys,

I am going crazy with this. I am trying to create a simple whitelist some numbers, reject all other calls. but cannot get this to work. The notifications will be replaced by Reject Call and Cancel Macro Actions respectively...

d87e8baf-17af-4ce3-8cf7-da6ae8aae656.jpeg

bad7f401-4325-4ca3-8f52-63473b0c60d9.jpeg
 

Jacob L

Moderator (Lawsonator)
have a look at your actions.

Make them like this:
if trigger fired(call incoming(+264))
----Good call
end if
if (trigger fired, incoming call)
---bad call
---cancel macro actions(this macro)
end if
 

Pseudocyclic

Well-known member
When you get a 'good' call, your macro will be triggered (ie will run) twice. Whenever the second trigger fires, the macro will always perform the bad number response, regardless of what number called.

Try this:

T: any call from any number
A: if call is NOT from a good number
A: reject call
A: cancel macro
A: end if
A: do good call stuff
 

Dm114

Well-known member
When you get a 'good' call, your macro will be triggered (ie will run) twice. Whenever the second trigger fires, the macro will always perform the bad number response, regardless of what number called.

Try this:

T: any call from any number
A: if call is NOT from a good number
A: reject call
A: cancel macro
A: end if
A: do good call stuff
Correct! 👍
 
Top