Skip to content

Commit

Permalink
Fix regression where IMAP commands with '*' uidset argument wasn't wo…
Browse files Browse the repository at this point in the history
…rking
  • Loading branch information
alecpl committed Apr 21, 2018
1 parent d4475e5 commit 0c9074f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion program/lib/Roundcube/rcube_imap_generic.php
Original file line number Diff line number Diff line change
Expand Up @@ -3747,7 +3747,8 @@ static function compressMessageSet($messages, $force=false)

// return as comma separated string
$result = implode(',', $result);
return preg_match('/[^0-9:,]/', $result) ? 'INVALID' : $result;

return preg_match('/[^0-9:,*]/', $result) ? 'INVALID' : $result;
}

/**
Expand Down

0 comments on commit 0c9074f

Please sign in to comment.