Fix variable typo in parseFetch which caused IMAP errors with Exchange.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 24 Jun 2005 08:15:38 +0000 (08:15 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 24 Jun 2005 08:15:38 +0000 (08:15 +0000)
Thanks Christian Froemmel from Charite.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9657 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
functions/imap_messages.php

index d095c98ee958dee08c25d5b5ef76baf606d62fb0..da5cdd993529a2160f15477b816ddc63dc1f48a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -378,6 +378,8 @@ Version 1.5.1 -- CVS
     configuration' subsection.
   - Javascript relied on rg=1 in the login page to force focus to
     password box if username was supplied as a url arg (#1222617).
+  - Fix variable typo in parseFetch which caused IMAP errors on Exchange.
+    Thanks Christian Froemmel.
 
 Version 1.5.0 - 2 February 2004
 -------------------------------
index 32cef7ee12642cf40df4baa5fc1d9237c7e5f1a4..92396803590af442ce2dd393bc9b598ba190c627 100755 (executable)
@@ -798,7 +798,7 @@ function parseFetch($aResponse,$aMessageList = array()) {
             }
         }
         $msgi ="$unique_id";
-        $msg['UID'] = $unique_id;
+        $aMsg['UID'] = $unique_id;
         $aMessageList[$msgi] = $aMsg;
     }
     return $aMessageList;
@@ -962,4 +962,4 @@ function sqimap_get_message($imap_stream, $id, $mailbox) {
     return $msg;
 }
 
-?>
\ No newline at end of file
+?>