From a19fc264b41b131d00b9b59d9a4d078d9efd781e Mon Sep 17 00:00:00 2001 From: Trevor Peirce Date: Sun, 3 Jul 2022 14:29:44 -0700 Subject: [PATCH] features: Update documentation for automon and automixmon The current documentation is out of date and does not reflect actual behaviour. This change makes documentation clearer and accurately reflect the purpose of relevant channel variables. ASTERISK-30123 Change-Id: I160d0b01fce862477ad55ac1aa708a730473eb6f --- main/features_config.c | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/main/features_config.c b/main/features_config.c index 50ca69b4a4..ac0135abe3 100644 --- a/main/features_config.c +++ b/main/features_config.c @@ -184,30 +184,34 @@ - DTMF sequence to start or stop monitoring a call + DTMF sequence to start or stop Monitor on a call This will cause the channel that pressed the DTMF sequence to be monitored by the Monitor application. The format for the recording is determined by the TOUCH_MONITOR_FORMAT channel variable. If this variable is not specified, then wav is the default. The filename is constructed in the following manner: - - prefix-timestamp-filename - + prefix-timestamp-suffix.fmt where prefix is either the value of the TOUCH_MONITOR_PREFIX channel variable or auto if the variable is not set. The timestamp - is a UNIX timestamp. The filename is either the value of the TOUCH_MONITOR + is a UNIX timestamp. The suffix is either the value of the TOUCH_MONITOR channel variable or the callerID of the channels if the variable is not set. + automixmon - DTMF sequence to start or stop mixmonitoring a call + DTMF sequence to start or stop MixMonitor on a call - Operation of the automixmon is similar to the automon - feature, with the following exceptions: - TOUCH_MIXMONITOR is used in place of TOUCH_MONITOR - TOUCH_MIXMONITOR_FORMAT is used in place of TOUCH_MIXMONITOR - There is no equivalent for TOUCH_MONITOR_PREFIX. "auto" is always how the filename begins. + This will cause the channel that pressed the DTMF sequence + to be monitored by the MixMonitor application. The + format for the recording is determined by the TOUCH_MIXMONITOR_FORMAT + channel variable. If this variable is not specified, then wav is the + default. The filename is constructed in the following manner: + prefix-timestamp-suffix.fmt + where prefix is either the value of the TOUCH_MIXMONITOR_PREFIX + channel variable or auto if the variable is not set. The timestamp + is a UNIX timestamp. The suffix is either the value of the TOUCH_MIXMONITOR + channel variable or the callerID of the channels if the variable is not set. automon -- 2.47.2