Modifications made to give options for how "Reply Citation" is done. This is the...
[squirrelmail.git] / src / compose.php
index 0fc6361bf26f18cd5d6551712c9c997d473ebb2a..8a348b70359ca40cf0594171c30b42b00db9dd31 100644 (file)
     **/
 
    include('../src/validate.php');
-   include("../functions/page_header.php");
    include("../functions/imap.php");
    include("../functions/date.php");
    include("../functions/mime.php");
    include("../functions/smtp.php");
    include("../functions/display_messages.php");
    include ("../functions/plugin.php");
-   include("../src/load_prefs.php");
 
    if (!isset($attachments))
    {
@@ -77,7 +75,7 @@
          for ($i=0; isset($body_ary[$i]); $i++) {
             if (! $forward_id)
             {
-                if (ereg('^[\\s>]+', $body_ary[$i]))
+                if (ereg('^[ >]+', $body_ary[$i]))
                 {
                     $body_ary[$i] = '>' . $body_ary[$i];
                 }
              }
              $bodyTop .= "\n";
              $body = $bodyTop . $body;
+         } else if ($reply_id) {
+             $orig_from = $orig_header->from;
+             $orig_from = trim(substr($orig_from,0,strpos($orig_from,'<')));
+             $orig_from = str_replace('"','',$orig_from);
+             $orig_from = str_replace("'",'',$orig_from);
+            $body = getReplyCitation($orig_from) . $body;
          }
          
          return;
               while (file_exists($attachment_dir . $localfilename))
                   $localfilename = GenerateRandomString(32, '', 7);
 
+              $newAttachment = array();
               $newAttachment['localfilename'] = $localfilename;
               $newAttachment['remotefilename'] = $filename;
               $newAttachment['type'] = strtolower($message->header->type0 .
          $passed_body, $color, $use_signature, $signature, $prefix_sig, 
          $editor_size, $attachments, $subject, $newmail, 
          $use_javascript_addr_book, $send_to_bcc, $reply_id, $mailbox, 
-         $from_htmladdr_search, $location_of_buttons, $attachment_dir;
+         $from_htmladdr_search, $location_of_buttons, $attachment_dir,
+        $username, $data_dir, $identity;
 
       $subject = decodeHeader($subject);
       $reply_subj = decodeHeader($reply_subj);
 
       if ($location_of_buttons == 'top') showComposeButtonRow();
 
+      $idents = getPref($data_dir, $username, 'identities');
+      if ($idents != '' && $idents > 1)
+      {
+         echo "   <TR>\n";
+         echo "      <TD BGCOLOR=\"$color[4]\" WIDTH=\"10%\" ALIGN=RIGHT>\n";
+         echo _("From:");
+         echo "      </TD><TD BGCOLOR=\"$color[4]\" WIDTH=\"90%\">\n";
+        echo "<select name=identity>\n";
+        echo "<option value=default>" . 
+           htmlspecialchars(getPref($data_dir, $username, 'full_name'));
+        $em = getPref($data_dir, $username, 'email_address');
+        if ($em != '')
+           echo htmlspecialchars(' <' . $em . '>') . "\n";
+        for ($i = 1; $i < $idents; $i ++) {
+           echo '<option value="' . $i . '"';
+           if (isset($identity) && $identity == $i)
+              echo ' SELECTED';
+           echo '>';
+           echo htmlspecialchars(getPref($data_dir, $username, 'full_name' . 
+                                         $i));
+           $em = getPref($data_dir, $username, 'email_address' . $i);
+           if ($em != '')
+              echo htmlspecialchars(' <' . $em . '>') . "\n";
+        }
+        echo "</select>\n";
+         echo "      </TD>\n";
+         echo "   </TR>\n";
+      }
       echo "   <TR>\n";
-      echo "      <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
+      echo "      <TD BGCOLOR=\"$color[4]\" WIDTH=\"10%\" ALIGN=RIGHT>\n";
       echo _("To:");
-      echo "      </TD><TD BGCOLOR=\"$color[4]\">\n";
+      echo "      </TD><TD BGCOLOR=\"$color[4]\" WIDTH=\"90%\">\n";
       printf("         <INPUT TYPE=text NAME=\"send_to\" VALUE=\"%s\" SIZE=60><BR>\n",
              htmlspecialchars($send_to));
       echo "      </TD>\n";
       $newAttachment['remotefilename'] = $HTTP_POST_FILES['attachfile']['name'];
       $newAttachment['type'] = 
          strtolower($HTTP_POST_FILES['attachfile']['type']);
-      
+
+      if ($newAttachment['type'] == "")
+         $newAttachment['type'] = 'application/octet-stream';
+
       $attachments[] = $newAttachment;
     }
   
-   function SqConvertRussianCharsets(){
-    //
-    // This function is here because Russian Apache is a bastard when it comes to
-    // attachments. The solution is to turn off attachment recoding for multipart
-    // forms and do it manually.
-    // See graf@relhum.org for support.
-    //
-    global $CHARSET, $SOURCE_CHARSET, $send_to, $send_to_cc, $send_to_bcc, $subject, $body;
-    $charset_ary = array("koi8-r" => "k",
-                            "windows-1251" => "w",
-                         "ibm866" => "a",
-                         "ISO-8859-5" => "i");
-    $body = convert_cyr_string($body, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
-    $send_to = convert_cyr_string($send_to, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
-    $send_to_cc = convert_cyr_string($send_to_cc, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
-    $send_to_bcc = convert_cyr_string($send_to_bcc, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
-    $subject = convert_cyr_string($subject, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
-   } // end SqConvertRussianCharsets()
-   
-   // Russian Apache sets $CHARSET. See if this is Russian Apache.
-   // If so, check if the source charset (koi8-r) is different from the 
-   // one submitted by the browser. If so, recode the parts of the form
-   // to the needed format so SM can proceed and not mangle the cyrillic
-   // input.
-   // See graf@relhum.org for support.
-   //
-   if (isset($CHARSET) && $CHARSET != $SOURCE_CHARSET) SqConvertRussianCharsets();
-   
    if (!isset($mailbox) || $mailbox == "" || ($mailbox == "None"))
       $mailbox = "INBOX";
 
          // Set $default_charset to correspond with the user's selection
          // of language interface.
          set_my_charset();
+
+         // This is to change all newlines to \n
+        // We'll change them to \r\n later (in the sendMessage function)
+        $body = str_replace("\r\n", "\n", $body);
+        $body = str_replace("\r", "\n", $body);
+        
+        // Rewrap $body so that no line is bigger than $editor_size
+        // This should only really kick in the sqWordWrap function
+        // if the browser doesn't support "HARD" as the wrap type
+        // Or, in Opera's case, something goes wrong.
+        $body = explode("\n", $body);
+        $newBody = '';
+        foreach ($body as $line) {
+           $line = rtrim($line);
+           if (strlen($line) <= $editor_size + 1)
+              $newBody .= $line . "\n";
+           else {
+              sqWordWrap($line, $editor_size) . "\n";
+              $newBody .= $line;
+           }
+        }
+        $body = $newBody;
+        
          do_hook("compose_send");
 
          if (! sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id)) {
          //$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
          displayPageHeader($color, $mailbox);
          
-         if ($AttachFailure)
+         if (isset($AttachFailure))
              plain_error_message(_("Could not move/copy file. File not attached"), $color);
 
          checkInput(true);
       sqimap_logout($imapConnection);
    }
    
-   
-   
-   
    function ClearAttachments() {
        global $attachments, $attachment_dir;
        
        
        $attachments = array();
    }
-   
+
+   function getReplyCitation($orig_from) {
+      global $reply_citation_style, $reply_citation_start, $reply_citation_end;
+
+      /* First, return an empty string when no citation style selected. */
+      if (($reply_citation_style == '') || ($reply_citation_style == 'none')) {
+         return ('');
+      }
+
+      /* Otherwise, try to select the desired citation style. */
+      switch ($reply_citation_style) {
+         case 'author_said':
+            $start = '';
+            $end   = ' ' . _("said") . ':';
+            break;
+         case 'quote_who':
+            $start = '<' . _("quote") . ' ' . _("who") . '="';
+            $end   = '">';
+            break;
+         case 'user-defined':
+            $start = $reply_citation_start;
+            $end   = $reply_citation_end;
+            break;
+         default: return ('');
+      }
+
+      /* Build and return the citation string. */
+      return ($start . $orig_from . $end . "\n");
+   }   
 ?>