diff options
author | thomascube <thomas@roundcube.net> | 2006-01-05 00:37:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-01-05 00:37:10 +0000 |
commit | 15a9d1ce671fcbc44ea3e4858d7aa6f5b22300c9 (patch) | |
tree | 30e15c3f52ff435d5b08691424515995d8b077c9 /program/lib/imap.inc | |
parent | 977a295eb1e97e0c230063da40b8296fca778814 (diff) |
Optimized loading time; added periodic mail check; added EXPUNGE command
Diffstat (limited to 'program/lib/imap.inc')
-rw-r--r-- | program/lib/imap.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc index a1dbd7b98..daacb03b4 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -607,7 +607,7 @@ function iil_StrToTime($str){ return $time2; } -function iil_C_Sort(&$conn, $mailbox, $field){ +function iil_C_Sort(&$conn, $mailbox, $field, $add=''){ /* Do "SELECT" command */ if (!iil_C_Select($conn, $mailbox)) return false; @@ -618,7 +618,8 @@ function iil_C_Sort(&$conn, $mailbox, $field){ if (!$fields[$field]) return false; $fp = $conn->fp; - $command = 's SORT ('.$field.') US-ASCII ALL UNDELETED'."\r\n"; + $command = 's SORT ('.$field.') US-ASCII ALL '."$add\r\n"; + //$command = 's SORT ('.$field.') US-ASCII ALL UNDELETED'."\r\n"; $line = $data = ''; if (!fputs($fp, $command)) return false; |