fixed some problems in sqimap_read_body(). Please test it out.
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 25 Jan 2001 05:25:48 +0000 (05:25 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 25 Jan 2001 05:25:48 +0000 (05:25 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@969 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
functions/imap_general.php
src/redirect.php

index 25ba186ab8e936c20f8d0a1ec3257bb6af78e7c7..a683c31080ab5d1cfa37b0cf6fd5034b5f6d027e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 Version 1.0 -- DEVELOPMENT
 --------------------------
+- Fixed problems in sqimap_read_body(), made it more reliable
 
 Version 1.0pre3 -- January 22, 2001 
 -----------------------------------
index 7222eed933ae1f16fe911f4acfa5a09939c6e7db..c91c3ec1381775b6cc2e7af489da446b0d8f957d 100755 (executable)
    function sqimap_read_data ($imap_stream, $pre, $handle_errors, &$response, &$message) {
       global $color, $squirrelmail_language, $imap_general_debug;
 
-      $keep_going = true;
       $read = fgets($imap_stream, 9096);
-      while ($keep_going)
-      {
-          // Continue if needed for this single line
-          while (strpos($read, "\n") === false)
-         {
-             $read .= fgets($imap_stream, 9096);
-         }
-         
-         if ($imap_general_debug)
-         {
-             echo "<small><tt><font color=\"#CC0000\">$read</font></tt></small><br>\n";
-             flush();
-         }
-
-          if (ereg("^$pre (OK|BAD|NO)(.*)$", $read, $regs))
-         {
-             // Test if this is really the last line.
-             // Very much a hack, but what else can I do?
-             socket_set_blocking($imap_stream, false);
-             $read_next = fgets($imap_stream, 2);
-             socket_set_blocking($imap_stream, true);
-             
-             if ($read_next == "")
-             {
-                 $keep_going = 0;
-             }
-         }
-         else
-         {
-             $read_next = fgets($imap_stream, 9096);
-         }
-
-          $data[] = $read;
-         $read = $read_next;
+      if (preg_match ("/^\* [0-9]+ FETCH.*{([0-9]+)}/", $read, $regs)) {
+         $size = $regs[1];
+      }
+      
+      $continue = true;
+      while ($continue) {
+         // Continue if needed for this single line
+         while (strpos($read, "\n") === false) {
+            $read .= fgets($imap_stream, 9096);
+         }
+         if ($imap_general_debug) {
+            echo "<small><tt><font color=\"#CC0000\">$read</font></tt></small><br>\n";
+            flush();
+         }
+         
+         if (ereg("^$pre (OK|BAD|NO)(.*)$", $read, $regs)) {
+            if ($size) {
+               $dt = $data;
+               $dt[0] = $dt[count($dt)-1] = "";
+               $d = implode ("", $dt);
+               if (strlen($d) >= $size) {
+                  $continue = false;
+               } else {
+                  $data[] = $read;
+                  $read = fgets ($imap_stream, 9096);
+               }
+            } else {
+               $continue = false;
+            }
+         } else {
+            $data[] = $read;
+            $read = fgets ($imap_stream, 9096);
+         }
       }
 
       $response = $regs[1];
@@ -60,7 +58,7 @@
 
       if ($handle_errors == false)
           return $data;
-         
+     
       if ($response == "NO") {
          // ignore this error from m$ exchange, it is not fatal (aka bug)
          if (!ereg("command resulted in",$message)) { 
index 868d05759578f42a8740e47c685ce4cd6caeda50..8a500d65b54b6b2d107666f49ede11706cb47b32 100644 (file)
@@ -14,7 +14,7 @@
 
    if (!isset($strings_php))
       include ("../functions/strings.php");
-include("../config/config.php");
+   include("../config/config.php");
 
    // Before starting the session, the base URI must be known.
    // Assuming that this file is in the src/ subdirectory (or