Re: [asterisk-users] Blocking outgping caller id on a PRI E1

2017-11-08 Thread David Duffett
It is likely being set by your PRI provider. Contact them to investigate. All the best... On 8 Nov 2017 9:03 am, "Neil Youngman" wrote: > I am trying to block/hide outgoing caller id on a PRI E1. > > It seems that it should be fairly simple, but it is defeating me.

[asterisk-users] Blocking outgping caller id on a PRI E1

2017-11-08 Thread Neil Youngman
I am trying to block/hide outgoing caller id on a PRI E1. It seems that it should be fairly simple, but it is defeating me. https://wiki.asterisk.org/wiki/display/AST/Function_CALLERID says: "to hide your caller id, use: Set(CALLERID(num-pres)=prohib)" That doesn't seem to do it. The calls are

[asterisk-users] Now Available: Security Releases for Certified Asterisk 13.13 and Asterisk 13, 14 and 15

2017-11-08 Thread Asterisk Development Team
The Asterisk Development Team has announced security releases for Certified Asterisk 13.13 and Asterisk 13, 14 and 15. The available security releases are released as versions 13.13-cert7, 13.18.1, 14.7.1 and 15.1.1. These releases are available for immediate download at

Re: [asterisk-users] Blocking outgping caller id on a PRI E1

2017-11-08 Thread Neil Youngman
Thanks David This line was operating with caller id withheld from a Cisco, so I am confident that it is possible to block the caller id on the line. If I've covered all the possibilities from the Asterisk end I will see if we can get the supplier to assist, but I would prefer to get it done in

Re: [asterisk-users] Blocking outgping caller id on a PRI E1

2017-11-08 Thread Markus
Can you try exten => s,n,Set(CALLERID(num)=anonymous) in your dialplan before passing the call to the PRI? and/or exten => s,n,Set(CALLERID(name)=anonymous) and/or exten => s,n,Set(CALLERID(all)=anonymous) If it doesn't work, maybe replace the "anonymous" with "" or something else. Sorry,

Re: [asterisk-users] Blocking outgping caller id on a PRI E1

2017-11-08 Thread nathan Kirk
If the pri accepts feature codes just prefix all calls with *67 or what ever your lec feature code is. Nathan Kirk > On Nov 8, 2017, at 12:58 PM, Markus wrote: > > Can you try > > exten => s,n,Set(CALLERID(num)=anonymous) > > in your dialplan before passing the

[asterisk-users] AST-2017-011: Memory leak in pjsip session resource

2017-11-08 Thread Asterisk Security Team
Asterisk Project Security Advisory - AST-2017-011 ProductAsterisk SummaryMemory leak in pjsip session resource Nature of Advisory Memory leak

Re: [asterisk-users] Call preemption

2017-11-08 Thread John Kiniston
The easiest thing to do might be to limit the peer to 11 calls in your sip.conf or pjsip.conf and then use the GROUP and GROUP_COUNT functions to limit the extension to 10 concurrent calls, Then when you get call #11 who is high priority you can allow it through or otherwise return busy.

[asterisk-users] AST-2017-009: Buffer overflow in pjproject header parsing can cause crash in Asterisk

2017-11-08 Thread Asterisk Security Team
Asterisk Project Security Advisory - AST-2017-009 ProductAsterisk SummaryBuffer overflow in pjproject header parsing can cause crash in Asterisk

Re: [asterisk-users] Call preemption

2017-11-08 Thread Markus
The task itself sounds like a job for an AGI script to me... check for amount of calls, if 10, hangup one. But how do you determine the priority of a call? Am 07.11.2017 um 12:21 schrieb Jean Aunis: Hello, Has anyone already implemented some sort of call preemption in Asterisk ? I am

[asterisk-users] AST-2017-010: Buffer overflow in CDR's set user

2017-11-08 Thread Asterisk Security Team
Asterisk Project Security Advisory - AST-2017-010 ProductAsterisk SummaryBuffer overflow in CDR's set user Nature of Advisory Buffer Overflow

Re: [asterisk-users] Call preemption

2017-11-08 Thread Steve Edwards
Please don't top-post. On Wed, 8 Nov 2017, Markus wrote: The task itself sounds like a job for an AGI script to me... check for amount of calls, if 10, hangup one. But how do you determine the priority of a call? Am 07.11.2017 um 12:21 schrieb Jean Aunis: Hello, Has anyone already