Re: [asterisk-users] blacklist/V* - using wildcard

2013-04-06 Thread Doug Lytle
Joseph wrote: So if the: "Set(goaway=${CALLERID(number):0:2})" limits the caller ID string to 2-characters, isn't it? Actually, it hasn't doing anything to the caller ID, it's assigning the first 2 characters of the CID to the variable. If I set it to 10-characters: ...${CALLERID(number):0:1

Re: [asterisk-users] sip registration

2013-04-06 Thread Steve Edwards
A better subject will yield better replies. On Sat, 6 Apr 2013, Thomas Perron wrote: Shouldnt I be able to at least ping the SIP provider IP? Not if they don't allow it. They don't. sip3.voipvoip.com registers fine for me with your credentials. Did you put the registration statement in the

Re: [asterisk-users] blacklist/V* - using wildcard

2013-04-06 Thread Joseph
On 04/06/13 14:38, Doug Lytle wrote: Joseph wrote: exten => s,4,GotoIf($["${CALLERIDNUM}" = "V4*"]?blacklisted,s,1 I don't believe so, you'd have to assign a variable to the first 2 characters and test that variable for V4. i.e. exten => s,1,Set(goaway=${CALLERID(number):0:2}) exten => s,n,G

Re: [asterisk-users] Asterisk SIP deadlocks - update_provisional_keepalive

2013-04-06 Thread Duane Larson
Looks like version 11.3 did not fix my issue. http://pastebin.com/gd291Bqz On Thu, Apr 4, 2013 at 1:23 PM, Duane Larson wrote: > Thanks Jim. Searched through the change log for "deadlock" but nothing > really stuck out. I'll upgrade to 11.3 and see if that makes a difference. > > > On Thu, A

[asterisk-users] sip registration

2013-04-06 Thread Thomas Perron
I have a very lite layout and attempting to get the SIP configuration set up initially before proceeding into other areas. VMware is running my Asterisk 11 on Ubuntu 12. Shouldnt I be able to at least ping the SIP provider IP? I run command "sip show registry" and do not see it set up. I run sip

Re: [asterisk-users] blacklist/V* - using wildcard

2013-04-06 Thread Doug Lytle
Joseph wrote: exten => s,4,GotoIf($["${CALLERIDNUM}" = "V4*"]?blacklisted,s,1 I don't believe so, you'd have to assign a variable to the first 2 characters and test that variable for V4. i.e. exten => s,1,Set(goaway=${CALLERID(number):0:2}) exten => s,n,GotoIf($["${goaway}" = "V4" ]?blackli

Re: [asterisk-users] blacklist/V* - using wildcard

2013-04-06 Thread Joseph
On 04/06/13 11:59, Joseph wrote: Does wildcard "*" character works in asterisk "blacklist"? I have a telemarketing caller who is rotating caller id but they usually start with "V4-something" eg. V40611320600265 I've tried to block using whildcard "*" : /blacklist/V4* : advertising bu

[asterisk-users] blacklist/V* - using wildcard

2013-04-06 Thread Joseph
Does wildcard "*" character works in asterisk "blacklist"? I have a telemarketing caller who is rotating caller id but they usually start with "V4-something" eg. V40611320600265 I've tried to block using whildcard "*" : /blacklist/V4* : advertising but it doesn't work. -- Joseph --