Re: [asterisk-users] DID/CID doesn't match "." (dot) in CID field

2010-03-16 Thread Steve Murphy
On Tue, Mar 16, 2010 at 7:45 AM, Daniel Grotti wrote: > Hi Murf, > this is what I get from CLI if I type : "[.]" instead of ".": > > > [example] > exten => test.skype/example[.]skype,1, NoOp(nothing) > exten => test.skype/example[.]skype,n, Hangup() > Daniel-- OK, I went and looked thru the sou

Re: [asterisk-users] DID/CID doesn't match "." (dot) in CID field

2010-03-16 Thread Richard Kenner
> > exten => _test.,1,Goto(some_context,${FILTER([a-z][0-z],${EXTEN})},1) > > > > I think there's some sort of bug or misfeature here, but I gave up trying > > to see exactly what it was. > > That filter line probably does not do what you think it does. I would > suggest checking the documentat

Re: [asterisk-users] DID/CID doesn't match "." (dot) in CID field

2010-03-16 Thread Tilghman Lesher
On Tuesday 16 March 2010 09:18:21 Richard Kenner wrote: > > exten => test.skype/example.skype,1, NoOp(nothing) > > exten => test.skype/example.skype,n, Hangup() > > > > As you can see, the "." (dot) is disappeared and, of course, CID matching > > doesn't work as I aspected. > > I've try to escape "

Re: [asterisk-users] DID/CID doesn't match "." (dot) in CID field

2010-03-16 Thread Richard Kenner
> exten => test.skype/example.skype,1, NoOp(nothing) > exten => test.skype/example.skype,n, Hangup() > > As you can see, the "." (dot) is disappeared and, of course, CID matching > doesn't work as I aspected. > I've try to escape "." with something like that "\.", but nothing. > It seems that aste

Re: [asterisk-users] DID/CID doesn't match "." (dot) in CID field

2010-03-16 Thread Daniel Grotti
Hi Murf, this is what I get from CLI if I type : "[.]" instead of ".": [example] exten => test.skype/example[.]skype,1, NoOp(nothing) exten => test.skype/example[.]skype,n, Hangup() CLI> show dialplan example [ Context 'example' created by 'pbx_config' ] 'test.skype' (CID match *'example[]skyp

Re: [asterisk-users] DID/CID doesn't match "." (dot) in CID field

2010-03-16 Thread Steve Murphy
Daniel-- Haven't tried this myself, but have you tried '[.]' instead of just '.' in the string (as a pattern search)? So, [example] exten => _test[.]skype/e[x]ample[.]skype,1, NoOp(nothing) exten => _test[.]skype/e[x]ample[.]skype,n, Hangup() If you don't really mean the cid matching (denoted w

[asterisk-users] DID/CID doesn't match "." (dot) in CID field

2010-03-16 Thread Daniel Grotti
Hi all, using Skype for Asterisk I have the following problem. In my dialplan I need to have a CID matching (example.skype) over a DID (test.skype) : [example] exten => test.skype/example.skype,1, NoOp(nothing) exten => test.skype/example.skype,n, Hangup() Where test.skype and example.skype ar