allow_call_time_pass_reference = Off
[squirrelmail.git] / src / compose.php
index 35cbc53da803ea2c7eda8b86cab9c82f76ae64fe..b14871015dcae1ac9ace0aeede2cede6e2932719 100644 (file)
@@ -76,25 +76,29 @@ function replyAllString($header) {
 }
 
 function getforwardHeader($orig_header) {
-   $bodyTop =  '-------- ' . _("Original Message") . " --------\n" .
-                _("Subject") . ': ' . $orig_header->subject . "\n" .
-                _("From")    . ': ' . $orig_header->from->getAddress() . "\n" .
-                _("Date")      . ': ' .
-                 getLongDateString( $orig_header->date ). "\n" .
-                _("To")      . ': ' . $orig_header->to[0]->getAddress()   . "\n";
-  if (count($orig_header->to) > 1) {
-     for ($x=1; $x < count($orig_header->to); $x++) {
-        $bodyTop .= '         ' . $orig_header->to[$x]->getAddress() . "\n";
-     }
-  }
+    global $editor_size;
+
+   $display = array(
+                     _("Subject") => strlen(_("Subject")),
+                     _("From")    => strlen(_("From")),                     
+                     _("Date")    => strlen(_("Date")),                     
+                     _("To")      => strlen(_("To")),               
+                     _("Cc")      => strlen(_("Cc"))                
+                    );
+   $maxsize = max($display);
+   $indent = str_pad('',$maxsize+2);
+   foreach($display as $key => $val) {
+      $display[$key] = $key .': '. str_pad('', $maxsize - $val);
+   }      
+   $bodyTop =  str_pad(' '._("Original Message").' ',$editor_size -2,'-',STR_PAD_BOTH);
+   $bodyTop .=  "\n". $display[_("Subject")] . decodeHeader($orig_header->subject) . "\n" .
+        $display[_("From")] . decodeHeader($orig_header->getAddr_s('from',"\n$indent")) . "\n" .
+        $display[_("Date")] . getLongDateString( $orig_header->date ). "\n" .
+        $display[_("To")] . decodeHeader($orig_header->getAddr_s('to',"\n$indent")) ."\n";
   if ($orig_header->cc != array() && $orig_header->cc !='') {
-     $bodyTop .= _("Cc") . ': ' . $orig_header->cc[0]->getAddress() . "\n";
-     if (count($orig_header->cc) > 1) {
-        for ($x = 1; $x < count($orig_header->cc); $x++) {
-            $bodyTop .= '         ' . $orig_header->cc[$x]->getAddress() . "\n";
-        }
-     }
+     $bodyTop .= $display[_("Cc")] . decodeHeader($orig_header->getAddr_s('cc',"\n$indent")) . "\n";
   }
+  $bodyTop .= str_pad('', $editor_size -2 , '-');
   $bodyTop .= "\n";
   return $bodyTop;
 }
@@ -447,7 +451,7 @@ function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $se
               $entities = $message->entities[0]->findDisplayEntity 
                       (array(), $alt_order = array('text/plain','html/plain'));
            }
-          $orig_header = $message->header; /* here is the envelope located */
+          $orig_header = $message->rfc822_header; /* here is the envelope located */
           /* redefine the message for picking up the attachments */
           $message = $message->entities[0];
           
@@ -456,16 +460,16 @@ function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $se
           if (!count($entities)) {
               $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain','html/plain'));
            }
-           $orig_header = $message->header;               
+           $orig_header = $message->rfc822_header;                
        }
         $encoding = $message->header->encoding;
        $type0 = $message->type0;
        $type1 = $message->type1;
-
         foreach ($entities as $ent) {
-           $bodypart = decodeBody(
-                     mime_fetch_body($imapConnection, $passed_id, $ent),
-                      $encoding);
+           $unencoded_bodypart = mime_fetch_body($imapConnection, $passed_id, $ent);
+          $body_part_entity = $message->getEntity($ent);
+          $bodypart = decodeBody($unencoded_bodypart,
+                                 $body_part_entity->header->encoding);
           if ($type1 == 'html') {
               $bodypart = strip_tags($bodypart);
           }
@@ -473,6 +477,9 @@ function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $se
        }
        if ($default_use_priority) {
          $mailprio = substr($orig_header->priority,0,1);
+         if (!$mailprio) {
+            $mailprio = 3;
+         }
        } else {
          $mailprio = '';
        }
@@ -480,7 +487,7 @@ function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $se
 
         $identity = '';
         $idents = getPref($data_dir, $username, 'identities');
-        $from_o = $message->header->from;
+        $from_o = $orig_header->from;
         if (is_object($from_o)) {
             $orig_from = $from_o->getAddress();
         } else {
@@ -502,81 +509,84 @@ function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $se
         }
        
        switch ($action) {
-         case ('draft'):
-             $use_signature = FALSE;
-            $send_to = $orig_header->getAddr_s('to');  
-            $send_to_cc = $orig_header->getAddr_s('cc');
-            $send_to_bcc = $orig_header->getAddr_s('bcc');
-             $subject = $orig_header->subject;
-
-             $body_ary = explode("\n", $body);
-             $cnt = count($body_ary) ;
-            $body = '';
-             for ($i=0; $i < $cnt; $i++) {
-               if (!ereg("^[>\\s]*$", $body_ary[$i])) {
-                   sqWordWrap($body_ary[$i], $editor_size );
-                   $body .= $body_ary[$i] . "\n";
-               }
-                unset($body_ary[$i]);
-             }
-            sqUnWordWrap($body);
-             getAttachments($message, $session, $passed_id, $entities, $imapConnection);
-            break;
-         case ('edit_as_new'):
-            $send_to = $orig_header->getAddr_s('to');  
-            $send_to_cc = $orig_header->getAddr_s('cc');
-            $send_to_bcc = $orig_header->getAddr_s('bcc');
-            $subject = $orig_header->subject;
-            $mailprio = $orig_header->priority;
-            $orig_from = '';
-             getAttachments($message, $session, $passed_id, $entities, $imapConnection);
-            sqUnWordWrap($body);
-            break;
-         case ('forward'):
-            $send_to = '';
-             $subject = $orig_header->subject;
-             if ((substr(strtolower($subject), 0, 4) != 'fwd:') &&
-                (substr(strtolower($subject), 0, 5) != '[fwd:') &&
-                (substr(strtolower($subject), 0, 6) != '[ fwd:')) {
-                $subject = '[Fwd: ' . $subject . ']';
-             }
-            $body = getforwardHeader($orig_header) . $body;
-            sqUnWordWrap($body);
-             getAttachments($message, $session, $passed_id, $entities, $imapConnection);            
-            break;
-         case ('reply' || 'reply_all'):
-            $send_to = $orig_header->reply_to;
-            if ($send_to) {
-               $send_to = $send_to->getAddress();
-            } else {
-               $send_to = $orig_header->from->getAddress();
-            }
-            $subject = $orig_header->subject;
-             $subject = str_replace('"', "'", $subject);
-             $subject = trim($subject);
-             if (substr(strtolower($subject), 0, 3) != 're:') {
-                $subject = 'Re: ' . $subject;
-             }
-            if ($action == 'reply_all') {
-               $send_to_cc = replyAllString($orig_header);
-            }
-             /* this corrects some wrapping/quoting problems on replies */          
-             $rewrap_body = explode("\n", $body);
-            $body = getReplyCitation($orig_header->from->personal);
-            $cnt = count($rewrap_body);
-             for ($i=0;$i<$cnt;$i++) {
-                sqWordWrap($rewrap_body[$i], ($editor_size - 2));
-                if (preg_match("/^(>+)/", $rewrap_body[$i], $matches)) {
-                    $gt = $matches[1];
-                   $body .= '>' . str_replace("\n", "\n$gt ", $rewrap_body[$i]) ."\n";
-                } else {
-                    $body .= '> ' . $rewrap_body[$i] . "\n";
-               }
-               unset($rewrap_body[$i]);
-             }
-            break;
-         default:
-            break;
+       case ('draft'):
+           $use_signature = FALSE;
+          $send_to = $orig_header->getAddr_s('to');    
+          $send_to_cc = $orig_header->getAddr_s('cc');
+          $send_to_bcc = $orig_header->getAddr_s('bcc');
+           $subject = $orig_header->subject;
+
+           $body_ary = explode("\n", $body);
+           $cnt = count($body_ary) ;
+          $body = '';
+           for ($i=0; $i < $cnt; $i++) {
+             if (!ereg("^[>\\s]*$", $body_ary[$i])) {
+                 sqWordWrap($body_ary[$i], $editor_size );
+                 $body .= $body_ary[$i] . "\n";
+             }
+              unset($body_ary[$i]);
+           }
+          sqUnWordWrap($body);
+           getAttachments($message, $session, $passed_id, $entities, $imapConnection);
+          break;
+        case ('edit_as_new'):
+           $send_to = $orig_header->getAddr_s('to');   
+           $send_to_cc = $orig_header->getAddr_s('cc');
+           $send_to_bcc = $orig_header->getAddr_s('bcc');
+           $subject = $orig_header->subject;
+           $mailprio = $orig_header->priority;
+           $orig_from = '';
+           getAttachments($message, $session, $passed_id, $entities, $imapConnection);
+          sqUnWordWrap($body);
+          break;
+       case ('forward'):
+          $send_to = '';
+           $subject = $orig_header->subject;
+           if ((substr(strtolower($subject), 0, 4) != 'fwd:') &&
+              (substr(strtolower($subject), 0, 5) != '[fwd:') &&
+              (substr(strtolower($subject), 0, 6) != '[ fwd:')) {
+              $subject = '[Fwd: ' . $subject . ']';
+           }
+          $body = getforwardHeader($orig_header) . $body;
+          sqUnWordWrap($body);
+           getAttachments($message, $session, $passed_id, $entities, $imapConnection);
+          break;
+       case ('forward_as_attachment'):
+           getMessage_RFC822_Attachment($message, $session, $passed_id, $imapConnection);
+          $body = '';
+          break;
+        case ('reply_all'):
+          $send_to_cc = replyAllString($orig_header);
+       case ('reply'):
+           $send_to = $orig_header->reply_to;
+           if (is_object($send_to)) {
+              $send_to = $send_to->getAddr_s('reply_to');
+           } else {
+              $send_to = $orig_header->getAddr_s('from');
+           }
+          $subject = $orig_header->subject;
+           $subject = str_replace('"', "'", $subject);
+           $subject = trim($subject);
+           if (substr(strtolower($subject), 0, 3) != 're:') {
+              $subject = 'Re: ' . $subject;
+           }
+           /* this corrects some wrapping/quoting problems on replies */            
+           $rewrap_body = explode("\n", $body);
+          $body = getReplyCitation($orig_header->from->personal);
+          $cnt = count($rewrap_body);
+           for ($i=0;$i<$cnt;$i++) {
+              sqWordWrap($rewrap_body[$i], ($editor_size - 2));
+              if (preg_match("/^(>+)/", $rewrap_body[$i], $matches)) {
+                 $gt = $matches[1];
+                $body .= '>' . str_replace("\n", "\n$gt ", $rewrap_body[$i]) ."\n";
+              } else {
+                 $body .= '> ' . $rewrap_body[$i] . "\n";
+             }
+             unset($rewrap_body[$i]);
+           }
+          break;
+       default:
+          break;
         }
        sqimap_logout($imapConnection);
     }
@@ -602,14 +612,19 @@ function getAttachments($message, $session, $passed_id, $entities, $imapConnecti
        ($message->type0 == 'message' && $message->type1 == 'rfc822')) {
         if ( !in_array($message->entity_id, $entities) && $message->entity_id) {
            if ($message->type0 == 'message' && $message->type1 == 'rfc822') {
-              $filename = decodeHeader($message->header->subject.'.eml');
+              $filename = decodeHeader($message->rfc822_header->subject.'.eml');
                if ($filename == "") {
                   $filename = "untitled-".$message->entity_id.'.eml';
                }
            } else {
-               $filename = decodeHeader($message->header->filename);
-               if ($filename == "") {
-                  $filename = "untitled-".$message->entity_id;
+               $filename = decodeHeader($message->header->getParameter('filename'));
+               if ($filename == '') {
+                 $name = decodeHeader($message->header->getParameter('name'));
+                 if ($name == '') {
+                     $filename = "untitled-".$message->entity_id;
+                 } else {
+                    $filename = $name;
+                 }
                }
             }
             $localfilename = GenerateRandomString(32, '', 7);
@@ -635,7 +650,7 @@ function getAttachments($message, $session, $passed_id, $entities, $imapConnecti
             fclose ($fp);
 
             $attachments[] = $newAttachment;
-            setPref($data_dir, $username, 'javascript_on', $js_pref);
+            setPref($data_dir, $username, 'attachments', $attachments);
         }
     } else {
         for ($i = 0; $i < count($message->entities); $i++) {
@@ -645,6 +660,32 @@ function getAttachments($message, $session, $passed_id, $entities, $imapConnecti
     return;
 }
 
+function getMessage_RFC822_Attachment($message, $session, $passed_id, $imapConnection) {
+    global $attachments, $attachment_dir, $username, $data_dir, $uid_support;
+    $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
+    $body_a = sqimap_run_command($imapConnection, "FETCH $passed_id RFC822",true, $response, $readmessage, $uid_support);
+    if ($response = 'OK') {
+       $subject = encodeHeader($message->rfc822_header->subject);
+       array_shift($body_a);
+       $body = implode('', $body_a);
+       $body .= "\r\n";
+                       
+       $localfilename = GenerateRandomString(32, 'FILE', 7);
+       $full_localfilename = "$hashed_attachment_dir/$localfilename";
+               
+       $fp = fopen( $full_localfilename, 'w');
+       fwrite ($fp, $body);
+       fclose($fp);
+       $newAttachment = array();
+       $newAttachment['localfilename'] = $localfilename;
+       $newAttachment['type'] = "message/rfc822";
+       $newAttachment['remotefilename'] = $subject.'.eml';
+       $newAttachment['session'] = $session;
+       $attachments[] = $newAttachment;
+    }
+    return;
+}
+
 function showInputForm ($session, $values=false) {
     global $send_to, $send_to_cc, $body,
            $passed_body, $color, $use_signature, $signature, $prefix_sig,
@@ -694,7 +735,10 @@ function showInputForm ($session, $values=false) {
     if (isset($session)) {
         echo '<input type="hidden" name="session" value="' . $session . "\">\n";
     }
-
+    
+    if (isset($passed_id)) {
+        echo '<input type="hidden" name="passed_id" value="' . $passed_id . "\">\n";
+    }
 
     if ($saved_draft == 'yes') {
         echo '<BR><CENTER><B>'. _("Draft Saved").'</CENTER></B>';
@@ -1017,7 +1061,8 @@ function getReplyCitation($orig_from)
         $end   = '">';
         break;
     case 'user-defined':
-        $start = $reply_citation_start . ' ';
+        $start = $reply_citation_start . 
+                ($reply_citation_start == '' ? '' : ' ');
         $end   = $reply_citation_end;
         break;
     default: