X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fcompose.php;h=8a348b70359ca40cf0594171c30b42b00db9dd31;hp=0fc6361bf26f18cd5d6551712c9c997d473ebb2a;hb=cd41fc8d96ed2fbc0d7c48f10f918a25bf61587e;hpb=6ee631f7b92f6a205e0841ac40e6b0e763a5a734 diff --git a/src/compose.php b/src/compose.php index 0fc6361b..8a348b70 100644 --- a/src/compose.php +++ b/src/compose.php @@ -16,14 +16,12 @@ **/ 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]; } @@ -103,6 +101,12 @@ } $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; @@ -162,6 +166,7 @@ while (file_exists($attachment_dir . $localfilename)) $localfilename = GenerateRandomString(32, '', 7); + $newAttachment = array(); $newAttachment['localfilename'] = $localfilename; $newAttachment['remotefilename'] = $filename; $newAttachment['type'] = strtolower($message->header->type0 . @@ -189,7 +194,8 @@ $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); @@ -217,10 +223,38 @@ if ($location_of_buttons == 'top') showComposeButtonRow(); + $idents = getPref($data_dir, $username, 'identities'); + if ($idents != '' && $idents > 1) + { + echo " \n"; + echo " \n"; + echo _("From:"); + echo " \n"; + echo "\n"; + echo " \n"; + echo " \n"; + } echo " \n"; - echo " \n"; + echo " \n"; echo _("To:"); - echo " \n"; + echo " \n"; printf("
\n", htmlspecialchars($send_to)); echo " \n"; @@ -375,38 +409,13 @@ $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"; @@ -422,6 +431,29 @@ // 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)) { @@ -433,7 +465,7 @@ //$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); @@ -513,9 +545,6 @@ sqimap_logout($imapConnection); } - - - function ClearAttachments() { global $attachments, $attachment_dir; @@ -527,5 +556,33 @@ $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"); + } ?>