* A fix for NT systems sending binary attachments
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 14 Jun 2001 12:19:56 +0000 (12:19 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 14 Jun 2001 12:19:56 +0000 (12:19 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1415 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/smtp.php

index 1454c4055809831866206559d271ba4a30c866b5..d63cea5bd3535eee50eaba82485727ff27f8cde7 100644 (file)
@@ -76,9 +76,6 @@
       if (isMultipart()) {
          foreach ($attachments as $info)
         {
       if (isMultipart()) {
          foreach ($attachments as $info)
         {
-//         echo "<pre>Attachment Info:\n";
-//         var_dump($info);
-//         echo "\n</pre>\n";
            if (isset($info['type']))
               $filetype = $info['type'];
             else
            if (isset($info['type']))
               $filetype = $info['type'];
             else
@@ -90,7 +87,9 @@
             $header .= "Content-Disposition: attachment; filename=\"" .
                $info['remotefilename'] . "\"\r\n";
             
             $header .= "Content-Disposition: attachment; filename=\"" .
                $info['remotefilename'] . "\"\r\n";
             
-            $file = fopen ($attachment_dir . $info['localfilename'], 'r');
+           // Use 'rb' for NT systems -- read binary
+           // Unix doesn't care -- everything's binary!  :-)
+            $file = fopen ($attachment_dir . $info['localfilename'], 'rb');
            if (substr($filetype, 0, 5) == 'text/' ||
                $filetype == 'message/rfc822') {
               $header .= "\r\n";
            if (substr($filetype, 0, 5) == 'text/' ||
                $filetype == 'message/rfc822') {
               $header .= "\r\n";