Klaus Darilion
2009-Mar-06 15:58 UTC
[asterisk-users] work around the 64 pickupgroups limit
Hi! What are the typical ways to work around the 64 groups limit? thanks klaus
Benny Amorsen
2009-Mar-06 21:26 UTC
[asterisk-users] work around the 64 pickupgroups limit
Klaus Darilion <klaus.mailinglists at pernau.at> writes:> What are the typical ways to work around the 64 groups limit?a) Split into different Asterisks b) Use directed pickup instead, not *8 /Benny
Klaus Darilion
2009-Mar-10 15:16 UTC
[asterisk-users] work around the 64 pickupgroups limit
Benny Amorsen schrieb:> Klaus Darilion <klaus.mailinglists at pernau.at> writes: > >> What are the typical ways to work around the 64 groups limit? > > a) Split into different Asterisks > b) Use directed pickup instead, not *8Maybe we should change the groups from a bitmask to an AST_LIST regards klaus
Klaus Darilion
2009-Mar-10 15:29 UTC
[asterisk-users] work around the 64 pickupgroups limit
Benny Amorsen schrieb:> Klaus Darilion <klaus.mailinglists at pernau.at> writes: > >> What are the typical ways to work around the 64 groups limit? > > b) Use directed pickup instead, not *8So I would have to implement privileges (who is allowed to pick up whose calls) manually - not easy .... klaus
On 7/03/2009 4:58 a.m., Klaus Darilion wrote:> Hi! > > What are the typical ways to work around the 64 groups limit?What we actually do is store a pickup group with a caller id. So the AsteriskDB has ${DB/pickup/${CALLERID(num)}} and we set pickupmark to the same. That way when someone dials 29 (what we use for pickup) it just checks that group - no limitations on number of groups that way. -- Kind Regards, Matt Riddell Director _______________________________________________ http://www.venturevoip.com (Great new VoIP end to end solution) http://www.venturevoip.com/news.php (Daily Asterisk News - html) http://www.venturevoip.com/newrssfeed.php (Daily Asterisk News - rss)
At 16:10 3/10/2009, Matt Riddell wrote: >On 7/03/2009 4:58 a.m., Klaus Darilion wrote: >> Hi! >> >> What are the typical ways to work around the 64 groups limit? > >What we actually do is store a pickup group with a caller id. > >So the AsteriskDB has ${DB/pickup/${CALLERID(num)}} and we set >pickupmark to the same. > >That way when someone dials 29 (what we use for pickup) it just checks >that group - no limitations on number of groups that way. Hey Matt, Would share some config file code with us?