Displaying 3 results from an estimated 3 matches for "privacymgrstatus".
2010 Jan 11
2
Asterisk core dumps when using PrivacyManager
Hi,
why would Asterisk core dump with the following test dialplan extension ?
exten => 8100,1,Answer()
exten => 8100,n,Set(CALLERID(all)="")
exten => 8100,n,PrivacyManager()
exten => 8100,n,GotoIf(${[${PRIVACYMGRSTATUS} = FAILED]}?:nocid)
exten => 8100,n,NoOp(Number is ${CALLERID(num)})
exten => 8100,n,Hangup()
exten => 8100,n(nocid),Playback(vm-goodbye)
exten => 8100,n,Hangup()
I ran in foreground with full debug output but nothing showed :(
== Using SIP RTP CoS mark 5
-- Executing [8100 at t...
2010 Aug 03
1
Asterisk 1.6 and PrivacyManager with SIP
...work I added the first three rules to the following:
exten => jaap,1,GotoIf($[${CALLERID(num)}=anonymous]?true:false)
exten => jaap,n(true),Set(CALLERID(num)="")
exten => jaap,n(false),NoOp()
exten => jaap,n,PrivacyManager()
exten => jaap,n,GotoIf($["${PRIVACYMGRSTATUS}"="FAILED"]?bad)
exten => jaap,n,Dial(SIP/1000,20,w)
exten => jaap,n,Hangup()
exten => jaap,n(bad),Playback(im-sorry)
exten => jaap,n,Playback(vm-goodbye)
exten => jaap,n,Hangup()
Unfortunately, this no longer seems to work with Asterisk 1.6: the
seco...
2010 Aug 31
1
Logging the CID from the Privacy Manager
...is <${CALLERID(num)}>)
exten => jw,n,GotoIf($[${CALLERID(num)}=anonymous]?true:false)
exten => jw,n(true),Set(CALLERID(num)=)
exten => jw,n(false),NoOp()
exten => jw,n,Verbose( -- CID is <${CALLERID(num)}>)
exten => jw,n,PrivacyManager(3,10)
exten => jw,n,GotoIf($[${PRIVACYMGRSTATUS}=FAILED]?bad)
exten => jw,n,Verbose( -- CID is <${CALLERID(num)}>)
exten => jw,n,Dial(SIP/1000,60,w)
exten => jw,n(bad),Playback(im-sorry)
exten => jw,n,Playback(vm-goodbye)
exten => jw,n,Hangup()
----------------------------------------------------------------
This message...