diff options
author | thomascube <thomas@roundcube.net> | 2005-12-11 22:56:46 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-12-11 22:56:46 +0000 |
commit | 31b2cee231cf5a154c87cccc1228df7b3bb1bf84 (patch) | |
tree | 0754cd0ea719eca66b6efd91e5155a2497d7bc80 /program/lib | |
parent | 1cded85790206afe084e1baff371c543711b2b18 (diff) |
Bugfixes on listing and caching functions
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/imap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc index 6ca522084..a1dbd7b98 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -618,7 +618,7 @@ function iil_C_Sort(&$conn, $mailbox, $field){ if (!$fields[$field]) return false; $fp = $conn->fp; - $command = 's SORT ('.$field.') US-ASCII ALL'."\r\n"; + $command = 's SORT ('.$field.') US-ASCII ALL UNDELETED'."\r\n"; $line = $data = ''; if (!fputs($fp, $command)) return false; |