瀏覽代碼

Fixed body retrival error on cyrus. (removed trailing space after command)

Pontus Ullgren 23 年之前
父節點
當前提交
2311a76ae9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      functions/mime.php

+ 1 - 1
functions/mime.php

@@ -379,7 +379,7 @@ function mime_fetch_body($imap_stream, $id, $ent_id ) {
         $ent_id = 1;
     }
 
-    $cmd = "FETCH $id BODY[$ent_id] ";
+    $cmd = "FETCH $id BODY[$ent_id]";
     $data = sqimap_run_command ($imap_stream, $cmd, true, $response, $message);
 
     do {