similar to: GROUP and GROUP_COUNT

Displaying 20 results from an estimated 400 matches similar to: "GROUP and GROUP_COUNT"

2010 Nov 05
1
GROUP_COUNT not counting correctly
Hello, this is a test to add a channel to multiple GROUPs. this is my dialplan : exten => s,n,NoOp(groepcount = ${GROUP_COUNT(40)}) exten => s,n,Set(GROUP(40)=40) exten => s,n,NoOp(This channel is member of : ${GROUP_LIST()}) exten => s,n,NoOp(groepcount = ${GROUP_COUNT(40)}) exten => s,n,NoOp(groepcount = ${GROUP_COUNT(40L)}) exten => s,n,Set(GROUP(40)=40L) exten =>
2005 Jun 05
0
Re: Bison, Flex, Conditional Expression
To any that may be interested in the implementation of the conditional expression in the expression parser (ast_expr2*) in asterisk, I've filed the patch at: http://bugs.digium.com/view.php?id=4459 Right now, a comment has been added noting that the IF func provides this capability, and asks if both would really be necessary. It's a good question. I haven't been following the
2006 Feb 02
0
agi/cagi call limit using group_count
Dear all, Anyone has experience using group and group_count to limit outgoing calls in AGI/CAGI? SET VARIABLE GROUP(${CALLERIDNUM}) OUTBOUND_GROUP EXEC Gotoif $[${GROUP_COUNT(OUTBOUND_GROUP@${CALLERIDNUM})} > 1]?BLOCK SET VARIABLE GROUP(${CALLERIDNUM}) OUTBOUND_GROUP But it doesn't work as it should. Tried in extensions.conf and it works. Any idea. Thanks Ray
2008 Jan 09
2
Busy notification with call limiting by GROUP_COUNT()
Hello all, I was wondering what will be the "proper" way to manage BUSY state notification in presence once call-limit, incominglimit and all those settings are gone. I'm using GROUP_COUNT for call limiting in Asterisk 1.4.13 but I have no idea how to set up the settings needed for BUSY notification to work as I want it to. Basically, I want to disable call waiting (this is
2008 Jun 13
1
AEL Help
I need help translating extensions.conf to AEL: [default] exten => _X.,1,Set(DID=${EXTEN:6}) exten => _X.,n,Goto(continue,1) exten => _1X.,1,Set(DID=${EXTEN:7}) exten => _1X.,n,Goto(continue,1) exten => continue,1,Noop(${DID}) exten => continue,n,Set(GROUP(IAX)=incoming) exten => continue,n,GotoIf($[${MATH(${GROUP_COUNT(incoming at IAX)}+${GROUP_COUNT(outgoing at
2010 Jun 05
1
Problem with GROUP()
Hello list, using asterisk 1.4.30 and trying GROUP() and GROUP_COUNT() for the first time... Having some troubles. This the dialplan (using a sub) : exten => s,n,Set(_custID=${custID}) exten => s,n,GROUP(${custID}) exten => s,n,NoOp(grouppcount = GROUP_COUNT(${custID})) exten => s,n,GoToIf($[ ${GROUP_COUNT(${custID})} > 2 ]?maxreached) The CLI shows : [Jun 5 16:06:26] --
2009 Dec 15
2
member (In use)
Hello list. We just upgraded to 1.6.1.11. We are using real time information stored on mysql databases. That is all running fine. Now, since we upgraded, some member don't get calls from queues. In CLI: "queue show" shows something like: 611 (Local/611 at agents) with penalty 20 (realtime) (*In use*) has taken no calls yet We use the extension 611 in different computers, in the
2008 Oct 10
2
Configuring Bandwidth.com SIP trunks to prevent one-way audio
Hello, We have 2 SIP trunks from Bandwidth.com and if both are in use and someone tries to dial out, they cause another call to get one-way audio (the caller hears us, we cannot hear them). This happens 100% of the time and Bandwidth.com doesn't offer any support. I don't see any setting that tells Asterisk that there are 2 channels available from Bandwidth.com's IP. I'm
2006 Mar 24
3
iax limit question
I want to limit the number of simultaneous incoming calls that my IAX DID can accept to, say, 2. The IAX DID provider sets no limit. The code below does work, but when the limit is in effect, new callers hear a "call cannot be completed as dialed.." message instead of a busy signal. Maybe this is an issue with the provider, but I do not like this and want callers to hear a busy signal.
2007 Feb 27
1
Do I understand GROUPs correctly?
Hi, I was under the impression that Set(GROUP()=1234) incremented some value associated with 1234. So if I did the same thing twice, I'd get a group count of 2. Ex: exten => s,1,Set(GROUP()=1234) exten => s,n,Set(GROUP()=1234) exten => s,n,Noop(Used channels: ${GROUP_COUNT(1234}) I get this in the CLI: -- Executing Set("IAX2/test-2", "GROUP()=1234") in new
2006 Nov 16
2
installing asterisk for Ubuntu Synaptic
I have an Ubuntu system and went into Synaptic and checked asterisk for installation. Once installed, I started it with /usr/sbin/asterisk -vvvgc and got the following output with several errors and notices. Do I need to do more or are these ok? I expected to have some conf files in /etc/asterisk but there is nothing there. Thanks! Created by Mark Spencer <markster@digium.com>
2008 Oct 28
1
Dealing with progress codes
Hi, I've ran into an issue with a PRI provider in a major metropolitan area that I haven't needed to deal with before and I was hoping someone might have some insight on how to handle this within the Asterisk dialplan. At this location users can't always tell if a number is long distance or not (there are a lot of area codes and prefixes in the vicinity). Additionally, users are
2005 Oct 18
8
free dids on goiax.com
GoIAX, the Asterisk community's free IAX provider, is offering free US dids now. I loaded about 175 dids in and put up a very beta sign in page. Unfortunately I had to restrict the free us/canada outbound calling back down to toll-free only. There was a lot of war dialing and prank calling going on. I'm working on some stuff to hopefully curb that kind of stuff down so I can
2020 Apr 14
0
[PATCH v2 32/33] iommu: Remove add_device()/remove_device() code-paths
From: Joerg Roedel <jroedel at suse.de> All drivers are converted to use the probe/release_device() call-backs, so the add_device/remove_device() pointers are unused and the code using them can be removed. Signed-off-by: Joerg Roedel <jroedel at suse.de> --- drivers/iommu/iommu.c | 149 ++++++++---------------------------------- include/linux/iommu.h | 4 -- 2 files changed, 29
2006 May 29
0
using components to reuse code
the following is the code of the controller, under the dir components/test/: class Test::GroupsManController < ApplicationController uses_component_template_root def add_to_group @account = Account.find_by_nick(@params[:nick]) # render :text => "#{session[:account_id]} #{Group.find(session[:group_id]).owner_id}" if (session[:account_id] ==
2020 Apr 14
0
[PATCH v2 11/33] iommu: Split off default domain allocation from group assignment
From: Joerg Roedel <jroedel at suse.de> When a bus is initialized with iommu-ops, all devices on the bus are scanned and iommu-groups are allocated for them, and each groups will also get a default domain allocated. Until now this happened as soon as the group was created and the first device added to it. When other devices with different default domain requirements were added to the group
2005 Sep 23
1
Dial() and BackGround()
Hello, is it possible to use Dial() and BackGround() in combination? I try to do something like this, but it is not working :( : exten => isdn,1,Set(LANGUAGE()=de) exten => isdn,2,Set(GROUP()=support) exten => isdn,3,GotoIf($[${GROUP_COUNT()} > 1],?100) ;Full group exten => isdn,2,Ringing() exten => isdn,3,Dial(SIP/302,120,tT) exten => isdn,5,Congestion exten =>
2007 Jun 29
1
Fwd: Call Wainting dysfunctions
I am trying to implement a Centralized Call Waiting System. I have red some document about asterisk group features to manage group and category of a sip channel. I have done a lot of test about it but always it doesn't work correctly if I transfer the call. This is the macro code I use for inbound calls. [macro-test] ; ${ARG1} - technology something like SIP ; ${ARG2} - resource.
2011 Apr 24
1
Realtime and priority labels
In the following example exten => _1NXXNXXXXXX,1,Set(GROUP(outbound)=myprovider) exten => _1NXXNXXXXXX,n,Set(COUNT=${GROUP_COUNT(myprovider at outbound)}) exten => _1NXXNXXXXXX,n,NoOp(There are ${COUNT} calls for myprovider) exten => _1NXXNXXXXXX,n,GotoIf($[ ${COUNT} > 2 ]?denied : continue) exten => _1NXXNXXXXXX,n(denied),NoOp(There are too many calls up) exten =>
2007 Nov 22
5
Odd bug in Siemens C460IP ?
Hello, I think I have encountered an odd bug in Siemens C460 IP/dect handsets, which is a bit annoying, and I'm not (yet) sure how to get round it without lots of hacks. Basically, on all external incoming calls, we set: exten => s,n,SIPAddHeader(Alert-Info: Bellcore-dr2) This causes handsets (i.e. Cisco 7960 / Grandstream / aastra) to set a different ring cadence so to differentiate