I need to apply a destination number condition to route a long list of numbers with no obvious pattern. So I could cram them all in to a single regex like
but it's going to be unreadable [at least 15 numbers on this one route] so I really don't want to do it like this.
So I add another condition destination_number row, and it stops working. I assume it's ANDing them together? Is there a way to OR them? I hope that Break or Inline is something to do with this but struggling to find any documentation which explains those columns.
condition | destination_number | ^(01324334832|01742743501|01550239421)$ |
but it's going to be unreadable [at least 15 numbers on this one route] so I really don't want to do it like this.
So I add another condition destination_number row, and it stops working. I assume it's ANDing them together? Is there a way to OR them? I hope that Break or Inline is something to do with this but struggling to find any documentation which explains those columns.