Fix regression where IMAP commands with '*' uidset argument wasn't working

release-1.2
Aleksander Machniak 6 years ago
parent 7901047474
commit 8d6d4a5de5

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
- Fix regression where IMAP commands with '*' uidset argument wasn't working
RELEASE 1.2.8
-------------
- Fix check_request() bypass in places using get_uids() [CVE-2018-9846] (#6238)

@ -3879,7 +3879,7 @@ class rcube_imap_generic
// return as comma separated string
$result = implode(',', $result);
return preg_match('/[^0-9:,]/', $result) ? 'INVALID' : $result;
return preg_match('/[^0-9:,*]/', $result) ? 'INVALID' : $result;
}
/**

Loading…
Cancel
Save