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

pull/6833/head
Aleksander Machniak 6 years ago
parent d4475e58db
commit 0c9074f286

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
- Fix regression where IMAP commands with '*' uidset argument wasn't working
RELEASE 1.1.11
--------------
- Don't ignore (global) userlogins/sendmail logs in per_user_logging mode

@ -3747,7 +3747,8 @@ 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