I would like to suggest additional feature request
When a client writes a email support, very often he don't change the title of the email from the previous case.
When this email arrives, it is automatically linked by the old number to the old case.
PHP Code:
if (preg_match('/\[#([0-9]+)[^0-9]*\]/', $email->get('name'), $m)) {
$caseNumber = $m[1];
$case = $this->entityManager
->getRDBRepository('Case')
->where([
'number' => $caseNumber,
])
->findOne();
As example:
Code:
{ "type": "notin", "attribute": "status", "value": ["Closed"] }