Account Max channels - This is the TOTAL Number of PATHS a customer can use at one time. #426
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
-- This does NOT override the maxchannels on a DID, or trunk, but if the maxchannels number is reached for the account, then any calls to or from this account will be denied!
--
--
-- Settings:
-- Maxchannels is total paths as defined by Maxchannels Type
-- Maxchannels Type
-- - 0 - limit outbound only ** Legacy MODE (This is how it works before this patch/update)
-- - 1 - limit inbound and outbound
-- - 2 - limit inbound only ** Future development if there is a need, possible fraud concern.
--
-- Maxchannels_reserve_out - # of channels to reserve for outbound.
-- IF THIS IS > 0, then the system will always reserve this number of channels to ensure that inbound calls cannot use up all the channels.
-- IF the total calls is > inbound and outbound (including the reserved outbound channels), calls will be denied.
--
-- Note: This does not override the maxchannels on a trunk or DID, but if all the channels for the account are used up the DID will ring busy.
--
--