Re: [asterisk-users] pattern matching DID

2009-11-02 Thread Jared Smith
On Sun, 2009-11-01 at 18:50 -0500, Thomas Perron wrote:
 Where is everyone located?  I am in Virginia, USA

There are literally thousands of people on this mailing list, so I doubt
it's worth having everyone tell you where they're from.  That being
said, I'm also in Virginia (near Fredericksburg), and there's enough
interest in the area that we might start up a local Asterisk users group
in the area.  What part of Virginia are you from?



-- 
Jared Smith
Training Manager
Digium, Inc.


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] pattern matching DID

2009-11-01 Thread Thomas Perron
I have two DID numbers.
I want callers who dial 1 703  to get placed in a specific part of
IVR
I want other callers who dial 1 567  to get placed in a different
area.
How do I do this please?
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] pattern matching DID

2009-11-01 Thread Aggio Alberto
Hi,
it's quite straightforward: you can do your dialplan like this (default is the 
default context answered when inbound calls happen) - remember the underscores! 
-


[default]

exten = _1703,1,Goto(place-IVR,s,1)

exten = _1567 ,1,Goto(place-other,s,1)



[place-IVR]

exten = s,1,Answer

exten = s,2,Background(menu-file)

exten = 1,1,Goto(submenu,1)

exten = 2,1,Goto(submenu,2)

 (...)





[place-other]

exten = s,1,Answer

exten = s,n,...

(...)

exten = s,n,Hangup

If you want to jump into a specific part of context, you should put a label 
near the 'n' priority where you want to jump to (eg. exten = 
s,n(jumphere),application/function) then specify that label into Goto() 
application.

Cheers,
//Al.




From: asterisk-users-boun...@lists.digium.com 
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Thomas Perron
Sent: domenica 1 novembre 2009 21.46
To: asterisk-users@lists.digium.com
Subject: [asterisk-users] pattern matching DID

I have two DID numbers.
I want callers who dial 1 703  to get placed in a specific part of IVR
I want other callers who dial 1 567  to get placed in a different area.
How do I do this please?

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] pattern matching DID

2009-11-01 Thread Thomas Perron
Thank you.
I am trying it shortly.  This is a lot of fun.  I am trying to find
places where I can get customers with IVR or anything relating to
Asterisk.  Any ideas?
Cheers
Tom

On 11/1/09, Aggio Alberto alberto.ag...@loquendo.com wrote:
 Hi,
 it's quite straightforward: you can do your dialplan like this (default is
 the default context answered when inbound calls happen) - remember the
 underscores! -


 [default]

 exten = _1703,1,Goto(place-IVR,s,1)

 exten = _1567 ,1,Goto(place-other,s,1)



 [place-IVR]

 exten = s,1,Answer

 exten = s,2,Background(menu-file)

 exten = 1,1,Goto(submenu,1)

 exten = 2,1,Goto(submenu,2)

  (...)





 [place-other]

 exten = s,1,Answer

 exten = s,n,...

 (...)

 exten = s,n,Hangup

 If you want to jump into a specific part of context, you should put a label
 near the 'n' priority where you want to jump to (eg. exten =
 s,n(jumphere),application/function) then specify that label into Goto()
 application.

 Cheers,
 //Al.



 
 From: asterisk-users-boun...@lists.digium.com
 [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Thomas Perron
 Sent: domenica 1 novembre 2009 21.46
 To: asterisk-users@lists.digium.com
 Subject: [asterisk-users] pattern matching DID

 I have two DID numbers.
 I want callers who dial 1 703  to get placed in a specific part of
 IVR
 I want other callers who dial 1 567  to get placed in a different
 area.
 How do I do this please?



___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] pattern matching DID

2009-11-01 Thread Thomas Perron
Where is everyone located?  I am in Virginia, USA

On 11/1/09, Aggio Alberto alberto.ag...@loquendo.com wrote:
 Hi,
 it's quite straightforward: you can do your dialplan like this (default is
 the default context answered when inbound calls happen) - remember the
 underscores! -


 [default]

 exten = _1703,1,Goto(place-IVR,s,1)

 exten = _1567 ,1,Goto(place-other,s,1)



 [place-IVR]

 exten = s,1,Answer

 exten = s,2,Background(menu-file)

 exten = 1,1,Goto(submenu,1)

 exten = 2,1,Goto(submenu,2)

  (...)





 [place-other]

 exten = s,1,Answer

 exten = s,n,...

 (...)

 exten = s,n,Hangup

 If you want to jump into a specific part of context, you should put a label
 near the 'n' priority where you want to jump to (eg. exten =
 s,n(jumphere),application/function) then specify that label into Goto()
 application.

 Cheers,
 //Al.



 
 From: asterisk-users-boun...@lists.digium.com
 [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Thomas Perron
 Sent: domenica 1 novembre 2009 21.46
 To: asterisk-users@lists.digium.com
 Subject: [asterisk-users] pattern matching DID

 I have two DID numbers.
 I want callers who dial 1 703  to get placed in a specific part of
 IVR
 I want other callers who dial 1 567  to get placed in a different
 area.
 How do I do this please?



___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] pattern matching DID

2009-11-01 Thread Thomas Perron
Does anyone know of a low price SIP termination service to Nepal?  For
VoIP calling card solutIon

On 11/1/09, Aggio Alberto alberto.ag...@loquendo.com wrote:
 Hi,
 it's quite straightforward: you can do your dialplan like this (default is
 the default context answered when inbound calls happen) - remember the
 underscores! -


 [default]

 exten = _1703,1,Goto(place-IVR,s,1)

 exten = _1567 ,1,Goto(place-other,s,1)



 [place-IVR]

 exten = s,1,Answer

 exten = s,2,Background(menu-file)

 exten = 1,1,Goto(submenu,1)

 exten = 2,1,Goto(submenu,2)

  (...)





 [place-other]

 exten = s,1,Answer

 exten = s,n,...

 (...)

 exten = s,n,Hangup

 If you want to jump into a specific part of context, you should put a label
 near the 'n' priority where you want to jump to (eg. exten =
 s,n(jumphere),application/function) then specify that label into Goto()
 application.

 Cheers,
 //Al.



 
 From: asterisk-users-boun...@lists.digium.com
 [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Thomas Perron
 Sent: domenica 1 novembre 2009 21.46
 To: asterisk-users@lists.digium.com
 Subject: [asterisk-users] pattern matching DID

 I have two DID numbers.
 I want callers who dial 1 703  to get placed in a specific part of
 IVR
 I want other callers who dial 1 567  to get placed in a different
 area.
 How do I do this please?



___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users