Hello list. Is there a way to simplify the notation of this configuration line?
if ( (uri=~"^sip:111.*@.*") | (uri=~"^sip:222.*@.*") | (uri=~"^sip:333.*@.*") | (uri=~"^sip:444.*@.*") | (uri=~"^sip:00.*@.*")){
with something like this maybe?
if ( (uri=~"^sip:111 | 222 | 333 | 444 | 00.*@.*")) {
Thanks. Ricardo.-