[Asterisk-Users] how do I do s extensions with PRI
John Todd
jtodd at loligo.com
Wed Jul 23 16:21:29 MST 2003
The way I do this is to create a separate context that has a
"match-all" statement, and then jump to a supplemental context that
does the real matching. Just use ${EXTEN} in the Goto jump. You can
also just put the _X. in front of the other extensions in the same
context, but I like to keep things a little bit apart to prevent
ordering confusion.
[generic1]
exten => _X.,1,SetVar(FOO=BAR)
exten => _X.,2,BogoApplication(some-variables)
exten => _X.,3,Goto(generic2,${EXTEN},1)
[generic2]
exten => _345.,1,Dial(SIP/345)
.
.
.
(etc. - all of your "real" matches in here)
JT
>I would like to know how to define the s extension when I have an incoming
>PRI line? Currently I have 5 incoming DID numbers. Four of these DID
>numbers I have going to specific extensions, the fifth number which is the
>main number I wish to go to a background sound where callers can hear
>message, get directory, dial extension, whatever. I see that the way to
>normally do this would be to define s extensions and then step up the
>priorities for each action I wished to be taken. However, with the PRI
>line it seems that I can't use the s extension. I can use exten => _X.
>but this screws up the other four DID numbers which I have going to
>specific extensions. Is there a way with a PRI that I can define an s
>extension or something like it to save from having to type an entire 10
>digit string multiple places?
>
>Thanks for any suggestions.
>AJ
>
>_______________________________________________
>Asterisk-Users mailing list
>Asterisk-Users at lists.digium.com
>http://lists.digium.com/mailman/listinfo/asterisk-users
More information about the asterisk-users
mailing list