Displaying 1 result from an estimated 1 matches for "_1212366975x".
Did you mean:
12123669751
2003 Jun 25
1
Pattern matching: least-to-most specific PITA
...sible from a dialplan
point of view when I have the full number and I'm not waiting on a
user to finish typing the digits.
If presented with 12123669751 I would expect the match to happen and
the SIP extension to be dialed. It doesn't. It dials the Zap
extension.
[foo]
;
exten => _1212366975X,1,Dial(SIP/${EXTEN})
exten => _181772721[8-9]X,1,Dial(SIP/${EXTEN})
exten => _191481287[4-7]X,1,Dial(SIP/${EXTEN})
exten => _141550926[0-2]X,1,Dial(SIP/${EXTEN})
;
exten => _.,1,Dial(Zap/g1/${EXTEN})
;
How do I invert this match examination to make it go most- to
least-specific execu...