We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The ini file is not populated corectly with the standard template from audiocodes Mp124 The issuse is on
[ TrunkGroup ] FORMAT TrunkGroup_Index = TrunkGroup_TrunkGroupNum, TrunkGroup_FirstTrunkId, TrunkGroup_FirstBChannel, TrunkGroup_LastBChannel, TrunkGroup_FirstPhoneNumber, TrunkGroup_ProfileId, TrunkGroup_LastTrunkId, TrunkGroup_Module; {line_loop}TrunkGroup {$line} = 0, 255, {$tgLastBChannel}, {$tgLastBChannel}, {$authname.line.{$line}}, 0, 255, 255; {/line_loop} [ \TrunkGroup ] ; ; *** TABLE EnableCallerId *** ; ;
[ EnableCallerId ] FORMAT EnableCallerId_Index = EnableCallerId_IsEnabled; {line_loop}EnableCallerId {$line} = 1; {/line_loop} [ \EnableCallerId ]
; ; *** TABLE Authentication *** ; ;
[ Authentication ] FORMAT Authentication_Index = Authentication_UserId, Authentication_UserPassword; {line_loop}Authentication {$line} = {$authname.line.{$line}}, {$secret.line.{$line}}; {/line_loop} [ \Authentication ]
; ; *** TABLE CallWaitingPerPort *** ; ;
[ CallWaitingPerPort ] FORMAT CallWaitingPerPort_Index = CallWaitingPerPort_IsEnabled; {line_loop}CallWaitingPerPort {$line} = 1; {/line_loop} [ \CallWaitingPerPort ]
In attach is the ini file generated with the provisioning and the ini file saved from working ac
ini_generated_by_prov.txt ini_saved_from_working_ac.txt
The text was updated successfully, but these errors were encountered:
i changed the line {line_loop}TrunkGroup {$line} = 0, 255, {$tgLastBChannel}, {$tgLastBChannel}, {$authname.line.{$line}}, 0, 255, 255;
to
{line_loop}TrunkGroup {$line} = 0, 255, {$line}, {$line}, {$authname.line.{$line}}, 0, 255, 255;
and ini generated is still not working
ini_generated_by_prov2.txt
How can i change the "TrunkGroup_Index, EnableCallerId_Index, Authentication_Index, CallWaitingPerPort_Index" to start from 0 instead of 1 ?
Sorry, something went wrong.
No branches or pull requests
The ini file is not populated corectly with the standard template from audiocodes Mp124
The issuse is on
[ TrunkGroup ]
FORMAT TrunkGroup_Index = TrunkGroup_TrunkGroupNum, TrunkGroup_FirstTrunkId, TrunkGroup_FirstBChannel, TrunkGroup_LastBChannel, TrunkGroup_FirstPhoneNumber, TrunkGroup_ProfileId, TrunkGroup_LastTrunkId, TrunkGroup_Module;
{line_loop}TrunkGroup {$line} = 0, 255, {$tgLastBChannel}, {$tgLastBChannel}, {$authname.line.{$line}}, 0, 255, 255;
{/line_loop}
[ \TrunkGroup ]
;
; *** TABLE EnableCallerId ***
;
;
[ EnableCallerId ]
FORMAT EnableCallerId_Index = EnableCallerId_IsEnabled;
{line_loop}EnableCallerId {$line} = 1;
{/line_loop}
[ \EnableCallerId ]
;
; *** TABLE Authentication ***
;
;
[ Authentication ]
FORMAT Authentication_Index = Authentication_UserId, Authentication_UserPassword;
{line_loop}Authentication {$line} = {$authname.line.{$line}}, {$secret.line.{$line}};
{/line_loop}
[ \Authentication ]
;
; *** TABLE CallWaitingPerPort ***
;
;
[ CallWaitingPerPort ]
FORMAT CallWaitingPerPort_Index = CallWaitingPerPort_IsEnabled;
{line_loop}CallWaitingPerPort {$line} = 1;
{/line_loop}
[ \CallWaitingPerPort ]
In attach is the ini file generated with the provisioning and the ini file saved from working ac
ini_generated_by_prov.txt
ini_saved_from_working_ac.txt
The text was updated successfully, but these errors were encountered: