Rename application.ini [labs]log_ajax_response_write_limit to [logs]json_response_write_limit

This commit is contained in:
the-djmaze 2024-04-23 17:44:13 +02:00
parent 17fc37975c
commit 372e4bc1c0
2 changed files with 8 additions and 3 deletions

View file

@ -132,6 +132,10 @@ class Application extends \RainLoop\Config\AbstractConfig
$sSectionKey = 'login';
$sParamKey = 'fault_delay';
}
if ('log_ajax_response_write_limit' === $sParamKey) {
$sSectionKey = 'logs';
$sParamKey = 'json_response_write_limit';
}
}
parent::Set($sSectionKey, $sParamKey, $mParamValue);
}
@ -379,7 +383,9 @@ Examples:
'auth_logging' => array(false, 'Enable auth logging in a separate file (for fail2ban)'),
'auth_logging_filename' => array('fail2ban/auth-{date:Y-m-d}.txt'),
'auth_logging_format' => array('[{date:Y-m-d H:i:s}] Auth failed: ip={request:ip} user={imap:login} host={imap:host} port={imap:port}'),
'auth_syslog' => array(false, 'Enable auth logging to syslog for fail2ban')
'auth_syslog' => array(false, 'Enable auth logging to syslog for fail2ban'),
'json_response_write_limit' => array(300),
),
'debug' => array(
@ -422,7 +428,6 @@ Enables caching in the system'),
'labs' => array(
'allow_message_append' => array(false, 'Allow drag & drop .eml files from system into messages list'),
'log_ajax_response_write_limit' => array(300),
'smtp_show_server_errors' => array(false),
'mail_func_clear_headers' => array(true, 'PHP mail() remove To and Subject headers'),
'mail_func_additional_parameters' => array(false, 'PHP mail() set -f emailaddress'),

View file

@ -183,7 +183,7 @@ class ServiceActions
$this->oActions->logException($oException, \LOG_ERR);
}
$iLimit = (int) $this->Config()->Get('labs', 'log_ajax_response_write_limit', 0);
$iLimit = (int) $this->Config()->Get('logs', 'json_response_write_limit', 0);
$this->oActions->logWrite(0 < $iLimit && $iLimit < \strlen($sResult)
? \substr($sResult, 0, $iLimit).'...' : $sResult, \LOG_INFO, 'JSON');
}