Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-12 Thread Warren Selby
On Apr 11, 2012, at 5:40 PM, list...@gmail.com wrote: And your examples should work for 1.8.10 correct? I just typed those out really quick, so there may be some syntax errors, but generally yes they should all work with 1.8.x. -- Thanks, Warren Selby, dCAP --

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-12 Thread lists65
: Thursday, April 12, 2012 11:18 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Dial Plan - Routing via Caller ID On Apr 11, 2012, at 5:40 PM, list...@gmail.com wrote: And your examples should work for 1.8.10 correct? I just typed those out

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-11 Thread lists65
Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Dial Plan - Routing via Caller ID On Thu, Apr 5, 2012 at 10:35 AM, list...@gmail.com wrote: If I wanted to route a call from a particular DID and the CALLERID from a specific A/C this doesn't seem to work for me

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-11 Thread Danny Nicholas
...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of list...@gmail.com Sent: Wednesday, April 11, 2012 4:11 PM To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: Re: [asterisk-users] Dial Plan - Routing via Caller ID Here is an example. Let's

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-11 Thread lists65
: [asterisk-users] Dial Plan - Routing via Caller ID On Thu, 5 Apr 2012 13:35:51 -0400 list...@gmail.com wrote: If I wanted to route a call from a particular DID and the CALLERID from a specific A/C this doesn't seem to work for me: exten = 614000/_702XXX,n,Goto(context1,s,1) exten

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-11 Thread lists65
From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Danny Nicholas Sent: Wednesday, April 11, 2012 5:17 PM To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: Re: [asterisk-users] Dial Plan - Routing via Caller ID

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-11 Thread Warren Selby
On Wed, Apr 11, 2012 at 4:11 PM, list...@gmail.com wrote: Here is an example. ** ** Let’s say that I want to send all calls to a context that would answer the call via voicemail. Let’s say that I want to only right a SIP phone if calls cam from a particular Area Code (maybe the

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-11 Thread lists65
Plan - Routing via Caller ID On Wed, Apr 11, 2012 at 4:11 PM, list...@gmail.com wrote: Here is an example. Let's say that I want to send all calls to a context that would answer the call via voicemail. Let's say that I want to only right a SIP phone if calls cam from a particular Area Code

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-11 Thread lists65
-users] Dial Plan - Routing via Caller ID On Wed, Apr 11, 2012 at 4:11 PM, list...@gmail.com wrote: Here is an example. Let's say that I want to send all calls to a context that would answer the call via voicemail. Let's say that I want to only right a SIP phone if calls cam from

[asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread lists65
I am running Asterisk 1.8.10.1. I am trying to set up some routing in my dial plans and having some issues (the issue being that I don't quite understand all of the syntax and patterns that can be used: Examples: DID1 = 614000 DID2 = 614001 CNAME1 = 614999 CNAME2 = 614998

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread John Kiniston
On Thu, Apr 5, 2012 at 10:35 AM, list...@gmail.com wrote: If I wanted to route a call from a particular DID and the CALLERID from a specific A/C this doesn't seem to work for me: exten = 614000/_702XXX,n,Goto(context1,s,1) exten = 614000/614999,n,Goto(context2,s,1) exten =

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Carlos Alvarez
On Thu, Apr 5, 2012 at 10:52 AM, John Kiniston johnkinis...@gmail.comwrote: On Thu, Apr 5, 2012 at 10:35 AM, list...@gmail.com wrote: If I wanted to route a call from a particular DID and the CALLERID from a specific A/C this doesn't seem to work for me: exten =

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Eric Wieling
Priorities are not complicated. Each extension starts with priority 1, all additional priorities are n and you ALWAYS end your extension with a Goto or a Hangup so the call doesn't fall off your intended extension and hump into the middle of some other extension and screw everything up.

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Chad Wallace
On Thu, 5 Apr 2012 13:35:51 -0400 list...@gmail.com wrote: If I wanted to route a call from a particular DID and the CALLERID from a specific A/C this doesn't seem to work for me: exten = 614000/_702XXX,n,Goto(context1,s,1) exten = 614000/614999,n,Goto(context2,s,1) exten =

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Carlos Alvarez
On Thu, Apr 5, 2012 at 11:00 AM, Eric Wieling ewiel...@nyigc.com wrote: Priorities are not complicated. Each extension starts with priority 1, all additional priorities are n and you ALWAYS end your extension with a This isn't correct, there are many cases where you must use an 's' priority.

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Warren Selby
On Apr 5, 2012, at 1:23 PM, Carlos Alvarez car...@televolve.com wrote: On Thu, Apr 5, 2012 at 11:00 AM, Eric Wieling ewiel...@nyigc.com wrote: Priorities are not complicated. Each extension starts with priority 1, all additional priorities are n and you ALWAYS end your extension with a

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Carlos Alvarez
On Thu, Apr 5, 2012 at 12:11 PM, Eric Wieling ewiel...@nyigc.com wrote: Are you sure you are not referring to the s extension? Absolutely. Every time I discuss 's' priority on this list or the Asterisk IRC channel people tell me it either doesn't exist or is wrong, but it's a powerful

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Carlos Alvarez
On Thu, Apr 5, 2012 at 12:13 PM, Warren Selby wcse...@selbytech.com wrote: You're think of EXTENSION 's', not PRORITY. Priority is the order the call goes through the dial plan. Extension is the part of the dial plan you're traversing. Priority will always be either a number or an 'n'.

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Warren Selby
On Apr 5, 2012, at 2:32 PM, Carlos Alvarez car...@televolve.com wrote: On Thu, Apr 5, 2012 at 12:11 PM, Eric Wieling ewiel...@nyigc.com wrote: Are you sure you are not referring to the s extension? Absolutely. Every time I discuss 's' priority on this list or the Asterisk IRC channel

Re: [asterisk-users] Dial Plan - Routing via Caller ID

2012-04-05 Thread Carlos Alvarez
On Thu, Apr 5, 2012 at 12:57 PM, Warren Selby wcse...@selbytech.com wrote: I still don't understand what you would need this for. What version of asterisk are you using? From voip-info.org, it says the s priority is used when different patterns may match at the same point in the extension