-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 13
-
Fix Version/s: 13
-
Component/s: Recordings
-
Labels:None
-
ToDo:
recordings | 13.0.30.9 |
Steps to reproduce:
- Create a system recording with a linked feature code and specify a feature code password. Submit and apply config.
- Dial feature code, and note that system does not prompt for PIN before allowing access.
The dialplan generated for the feature code is not writing the PIN:
lgaetzdev2*CLI> dialplan show *2923@from-internal
[ Included context 'app-recordings' created by 'pbx_config' ]
'*2923' => 1. Set(__COS_DEST=edit-recording-23) [pbx_config]
2. Set(__COS_TYPE=FC) [pbx_config]
3. Macro(user-callerid,) [pbx_config]
4. Wait(2) [pbx_config]
5. Macro(systemrecording,docheck,custom/test) [pbx_config]
Manually correcting the dialplan with the PIN as ARG3 for the Macro fixes the issue:
lgaetzdev2*CLI> dialplan show *2923@from-internal
[ Included context 'app-recordings' created by 'pbx_config' ]
'*2923' => 1. Set(__COS_DEST=edit-recording-23) [pbx_config]
2. Set(__COS_TYPE=FC) [pbx_config]
3. Macro(user-callerid,) [pbx_config]
4. Wait(2) [pbx_config]
5. Macro(systemrecording,docheck,custom/test,4321) [pbx_config]