瀏覽代碼

Fixed a bug that would only appear with an obscenely long line in the email.

Tyler Akins 24 年之前
父節點
當前提交
edbb3f92c5
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      functions/imap_general.php

+ 3 - 0
functions/imap_general.php

@@ -74,6 +74,9 @@
                } else {
                   $data[] = $read;
                   $read = fgets($imap_stream, 9096);
+		  while (strpos($read, "\n") === false) {
+		     $read .= fgets($imap_stream, 9096);
+		  }
                }
                $total_size += strlen($read);
             } else {