- Fix errors handling in IMAP command continuations (#1485762)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | --------------------------- |
| | | |
| | | 2009/03/06 (alec) |
| | | ---------- |
| | | - Fix errors handling in IMAP command continuations (#1485762) |
| | | |
| | | 2009/03/04 (alec) |
| | | ---------- |
| | | - Fix datetime columns defaults in mysql's DDL (#1485641) |
| | |
| | | if(preg_match('/^\{[0-9]+\}\r\n$/', $parts[$i+1])) { |
| | | $res += iil_PutLine($fp, $parts[$i].$parts[$i+1], false); |
| | | $line = iil_ReadLine($fp, 1000); |
| | | // handle error in command |
| | | if ($line[0] != '+') |
| | | return false; |
| | | $i++; |
| | | } |
| | | else |
| | |
| | | $c = 0; |
| | | |
| | | $query = 'srch1 SEARCH ' . chop($criteria); |
| | | iil_PutLineC($fp, $query); |
| | | if (!iil_PutLineC($fp, $query)) { |
| | | return false; |
| | | } |
| | | do { |
| | | $line=trim(iil_ReadLine($fp, 10000)); |
| | | if (eregi("^\* SEARCH", $line)) { |