search for: external_provider

Displaying 1 result from an estimated 1 matches for "external_provider".

Did you mean: external_provider1
2006 Mar 09
2
Extracting info from the $EXTEN variable
Is there a way to access only certain positions in the $EXTEN variable? I'd like to filter my international calls based on the destination country: My dialplan looks like this (1XX0. is the international calling convention for Chile) exten => _1XX0.,1,Dial(SIP/${EXTEN:4}@external_provider) But, I'd like to, depending on the destination country (digits 5 and eventually 6 of EXTEN), route my calls for another provider, something like: exten => _1XX0.,1,GotoIf(${EXTEN[5-6]} == certain_pattern)?2,3) exten => _1XX0.,2,Dial(SIP/${EXTEN:4}@external_provider1) exten => _1XX0...