Re: [asterisk-users] how to match "no callerid" in 1.6 ?

2009-07-25 Thread Stanisław Pitucha
2009/7/24 Louis-David Mitterrand : > This used to work fine in 1.4: > >        exten => 2131/,1,NoOp(reject3: ${CALLERID(num)}) >        exten => 2131/,n,Playback(no_unknow_callerid_here) >        exten => 2131/,n,Hangup > > And now, after upgrading to 1.6.1.x it matches every callerid. I'm not su

Re: [asterisk-users] how to match "no callerid" in 1.6 ?

2009-07-25 Thread Philipp Kempgen
Leif Madsen schrieb: > I don't see how using the > exten[/callerid] notation is really better than the GotoIf() > > Personally, the GotoIf() makes much more sense to me, because you're placing > the > matching logic in a single place, True. > as opposed to an error prone method of adding >

Re: [asterisk-users] how to match "no callerid" in 1.6 ?

2009-07-25 Thread Leif Madsen
Philipp Kempgen wrote: > Louis-David Mitterrand schrieb: >> On Fri, Jul 24, 2009 at 10:37:38AM +0200, Michiel van Baak wrote: >>> On 10:17, Fri 24 Jul 09, Louis-David Mitterrand wrote: This used to work fine in 1.4: exten => 2131/,1,NoOp(reject3: ${CALLERID(num)}) exten =>

Re: [asterisk-users] how to match "no callerid" in 1.6 ?

2009-07-25 Thread Louis-David Mitterrand
On Fri, Jul 24, 2009 at 11:14:47AM +0200, Philipp Kempgen wrote: > Louis-David Mitterrand schrieb: > > On Fri, Jul 24, 2009 at 10:37:38AM +0200, Michiel van Baak wrote: > >> On 10:17, Fri 24 Jul 09, Louis-David Mitterrand wrote: > >> > > >> > This used to work fine in 1.4: > >> > > >> > exten =>

Re: [asterisk-users] how to match "no callerid" in 1.6 ?

2009-07-24 Thread Philipp Kempgen
Louis-David Mitterrand schrieb: > On Fri, Jul 24, 2009 at 10:37:38AM +0200, Michiel van Baak wrote: >> On 10:17, Fri 24 Jul 09, Louis-David Mitterrand wrote: >> > >> > This used to work fine in 1.4: >> > >> >exten => 2131/,1,NoOp(reject3: ${CALLERID(num)}) >> >exten => 2131/,n,Playback(no

Re: [asterisk-users] how to match "no callerid" in 1.6 ?

2009-07-24 Thread Louis-David Mitterrand
On Fri, Jul 24, 2009 at 10:37:38AM +0200, Michiel van Baak wrote: > On 10:17, Fri 24 Jul 09, Louis-David Mitterrand wrote: > > > > This used to work fine in 1.4: > > > > exten => 2131/,1,NoOp(reject3: ${CALLERID(num)}) > > exten => 2131/,n,Playback(no_unknow_callerid_here) > > exten =

Re: [asterisk-users] how to match "no callerid" in 1.6 ?

2009-07-24 Thread Michiel van Baak
On 10:17, Fri 24 Jul 09, Louis-David Mitterrand wrote: > Hi, > > This used to work fine in 1.4: > > exten => 2131/,1,NoOp(reject3: ${CALLERID(num)}) > exten => 2131/,n,Playback(no_unknow_callerid_here) > exten => 2131/,n,Hangup > > And now, after upgrading to 1.6.1.x it matches

[asterisk-users] how to match "no callerid" in 1.6 ?

2009-07-24 Thread Louis-David Mitterrand
Hi, This used to work fine in 1.4: exten => 2131/,1,NoOp(reject3: ${CALLERID(num)}) exten => 2131/,n,Playback(no_unknow_callerid_here) exten => 2131/,n,Hangup And now, after upgrading to 1.6.1.x it matches every callerid. Did something change? Thanks, _