X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fcompose.php;h=d775eb22dbde02fe80b1d2ee1526750537f2fa94;hp=ab57e266654ea81128a71f467cbf40ae881c3a6a;hb=5cc0b70e9e4f72b5ebcc3e3cea1b3ca510a92718;hpb=e707c74a584269f5a2cdc5593a0f32f4703ea131 diff --git a/src/compose.php b/src/compose.php index ab57e266..d775eb22 100644 --- a/src/compose.php +++ b/src/compose.php @@ -17,22 +17,6 @@ * $Id$ */ -/*****************************************************************/ -/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!! ***/ -/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION. ***/ -/*** + Base level indent should begin at left margin, as ***/ -/*** the require_once below looks. ***/ -/*** + All identation should consist of four space blocks ***/ -/*** + Tab characters are evil. ***/ -/*** + all comments should use "slash-star ... star-slash" ***/ -/*** style -- no pound characters, no slash-slash style ***/ -/*** + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD ***/ -/*** ALWAYS USE { AND } CHARACTERS!!! ***/ -/*** + Please use ' instead of ", when possible. Note " ***/ -/*** should always be used in _( ) function calls. ***/ -/*** Thank you for your help making the SM code more readable. ***/ -/*****************************************************************/ - require_once('../src/validate.php'); require_once('../functions/imap.php'); require_once('../functions/date.php'); @@ -41,20 +25,343 @@ require_once('../functions/smtp.php'); require_once('../functions/display_messages.php'); require_once('../functions/plugin.php'); +/* --------------------- Specific Functions ------------------------------ */ + + + +/** + * Does the opposite of sqWordWrap() + */ +function sqUnWordWrap(&$body) { + $lines = explode("\n", $body); + $body = ''; + $PreviousSpaces = ''; + for ($i = 0; $i < count($lines); $i ++) { + ereg("^([\t >]*)([^\t >].*)?$", $lines[$i], $regs); + $CurrentSpaces = $regs[1]; + if (isset($regs[2])) { + $CurrentRest = $regs[2]; + } + + if ($i == 0) { + $PreviousSpaces = $CurrentSpaces; + $body = $lines[$i]; + } else if (($PreviousSpaces == $CurrentSpaces) /* Do the beginnings match */ + && (strlen($lines[$i - 1]) > 65) /* Over 65 characters long */ + && strlen($CurrentRest)) { /* and there's a line to continue with */ + $body .= ' ' . $CurrentRest; + } else { + $body .= "\n" . $lines[$i]; + $PreviousSpaces = $CurrentSpaces; + } + } + $body .= "\n"; +} + +/* ----------------------------------------------------------------------- */ + if (!isset($attachments)) { $attachments = array(); session_register('attachments'); } +if (!isset($composesession)) { + $composesession = 0; + session_register('composesession'); +} + +if (!isset($session)) { + $session = "$composesession" +1; + $composesession = $session; +} + +if (!isset($mailbox) || $mailbox == '' || ($mailbox == 'None')) { + $mailbox = 'INBOX'; +} + +if (isset($draft)) { + include_once ('../src/draft_actions.php'); + if (! isset($reply_id)) { + $reply_id = 0; + } + if (! isset($MDN)) { + $MDN = 'False'; + } + if (!saveMessageAsDraft($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id, $MDN, $session)) { + showInputForm($session); + exit(); + } else { + $draft_message = _("Draft Email Saved"); + /* If this is a resumed draft, then delete the original */ + if(isset($delete_draft)) { + Header("Location: delete_message.php?mailbox=" . urlencode($draft_folder) . + "&message=$delete_draft&sort=$sort&startMessage=1&saved_draft=yes"); + exit(); + } + else { + if ($compose_new_win == '1') { + Header("Location: compose.php?saved_draft=yes&session=$composesession"); + exit(); + } + else { + Header("Location: right_main.php?mailbox=$draft_folder&sort=$sort". + "&startMessage=1¬e=$draft_message"); + exit(); + } + } + } +} + +if (isset($send)) { + if (isset($HTTP_POST_FILES['attachfile']) && + $HTTP_POST_FILES['attachfile']['tmp_name'] && + $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none') { + $AttachFailure = saveAttachedFiles($session); + } + if (checkInput(false) && !isset($AttachFailure)) { + $urlMailbox = urlencode (trim($mailbox)); + if (! isset($reply_id)) { + $reply_id = 0; + } + /* + * 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) { + if( $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'); + + $MDN = False; // we are not sending a mdn response + if (! isset($mailprio)) { + $Result = sendMessage($send_to, $send_to_cc, $send_to_bcc, + $subject, $body, $reply_id, $MDN, '', $session); + } else { + $Result = sendMessage($send_to, $send_to_cc, $send_to_bcc, + $subject, $body, $reply_id, $MDN, $mailprio, $session); + } + if (! $Result) { + showInputForm($session); + exit(); + } + if ( isset($delete_draft)) { + Header("Location: delete_message.php?mailbox=" . urlencode( $draft_folder ). + "&message=$delete_draft&sort=$sort&startMessage=1&mail_sent=yes"); + exit(); + } + if ($compose_new_win == '1') { + Header("Location: compose.php?mail_sent=yes&session=$composesession"); + } + else { + Header("Location: right_main.php?mailbox=$urlMailbox&sort=$sort". + "&startMessage=1"); + } + } else { + /* + *$imapConnection = sqimap_login($username, $key, $imapServerAddress, + * $imapPort, 0); + */ + if ($compose_new_win == '1') { + compose_Header($color, $mailbox); + } + else { + displayPageHeader($color, $mailbox); + } + if (isset($AttachFailure)) { + plain_error_message(_("Could not move/copy file. File not attached"), + $color); + } + + checkInput(true); + showInputForm($session); + /* sqimap_logout($imapConnection); */ + } +} elseif (isset($html_addr_search_done)) { + if ($compose_new_win == '1') { + compose_Header($color, $mailbox); + } + else { + displayPageHeader($color, $mailbox); + } + + if (isset($send_to_search) && is_array($send_to_search)) { + foreach ($send_to_search as $k => $v) { + if (substr($k, 0, 1) == 'T') { + if ($send_to) { + $send_to .= ', '; + } + $send_to .= $v; + } + elseif (substr($k, 0, 1) == 'C') { + if ($send_to_cc) { + $send_to_cc .= ', '; + } + $send_to_cc .= $v; + } + elseif (substr($k, 0, 1) == 'B') { + if ($send_to_bcc) { + $send_to_bcc .= ', '; + } + $send_to_bcc .= $v; + } + } + } + showInputForm($session); +} elseif (isset($html_addr_search)) { + if (isset($HTTP_POST_FILES['attachfile']) && + $HTTP_POST_FILES['attachfile']['tmp_name'] && + $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none') { + if (saveAttachedFiles($session)) { + plain_error_message(_("Could not move/copy file. File not attached"), $color); + } + } + /* + * I am using an include so as to elminiate an extra unnecessary + * click. If you can think of a better way, please implement it. + */ + include_once('./addrbook_search_html.php'); +} elseif (isset($attach)) { + if (saveAttachedFiles($session)) { + plain_error_message(_("Could not move/copy file. File not attached"), $color); + } + if ($compose_new_win == '1') { + compose_Header($color, $mailbox); + } + else { + displayPageHeader($color, $mailbox); + } + showInputForm($session); +} +elseif (isset($sigappend)) { + $idents = getPref($data_dir, $username, 'identities', 0); + if ($idents > 1) { + if ($identity == 'default') { + $no = 'g'; + } else { + $no = $identity; + } + $signature = getSig($data_dir, $username, $no); + } + $body .= "\n\n".($prefix_sig==true? "-- \n":'').$signature; + if ($compose_new_win == '1') { + compose_Header($color, $mailbox); + } else { + displayPageHeader($color, $mailbox); + } + showInputForm($session); +} elseif (isset($do_delete)) { + if ($compose_new_win == '1') { + compose_Header($color, $mailbox); + } + else { + displayPageHeader($color, $mailbox); + } + + $hashed_attachment_dir = getHashedDir($username, $attachment_dir); + if (isset($delete) && is_array($delete)) { + foreach($delete as $index) { + $attached_file = $hashed_attachment_dir . '/' + . $attachments[$index]['localfilename']; + unlink ($attached_file); + unset ($attachments[$index]); + } + } + + showInputForm($session); + +} elseif (isset($attachedmessages)) { + + /* + * This handles the case if we attache message + */ + $imapConnection = sqimap_login($username, $key, $imapServerAddress, + $imapPort, 0); + if ($compose_new_win == '1') { + compose_Header($color, $mailbox); + } + else { + displayPageHeader($color, $mailbox); + } + + $newmail = true; + + newMail(); + showInputForm($session); + sqimap_logout($imapConnection); + +} else { + /* + * This handles the default case as well as the error case + * (they had the same code) --> if (isset($smtpErrors)) + */ + $imapConnection = sqimap_login($username, $key, $imapServerAddress, + $imapPort, 0); + if ($compose_new_win == '1') { + compose_Header($color, $mailbox); + } + else { + displayPageHeader($color, $mailbox); + } + + $newmail = true; + + ClearAttachments($session); + + if (isset($forward_id) && $forward_id && isset($ent_num) && $ent_num) { + getAttachments(0, $session); + } + + if (isset($draft_id) && $draft_id && isset($ent_num) && $ent_num) { + getAttachments(0, $session); + } + + newMail($session); + showInputForm($session); + sqimap_logout($imapConnection); +} + +exit(); + + +/**************** Only function definitions go below *************/ + + /* This function is used when not sending or adding attachments */ function newMail () { global $forward_id, $imapConnection, $msg, $ent_num, $body_ary, $body, $reply_id, $send_to, $send_to_cc, $mailbox, $send_to_bcc, $editor_size, - $draft_id, $use_signature; + $draft_id, $use_signature, $composesession, $forward_cc; - $send_to = decodeHeader($send_to); - $send_to_cc = decodeHeader($send_to_cc); - $send_to_bcc = decodeHeader($send_to_bcc); + $send_to = decodeHeader($send_to, false); + $send_to_cc = decodeHeader($send_to_cc, false); + $send_to_bcc = decodeHeader($send_to_bcc, false); if ($forward_id) { $id = $forward_id; @@ -110,7 +417,7 @@ function newMail () { } } if (!$draft_id) { - sqWordWrap($body_ary[$i], $editor_size - 1); + sqWordWrap($body_ary[$i], $editor_size - 1); } $body .= $body_ary[$i] . "\n"; unset($body_ary[$i]); @@ -119,31 +426,41 @@ function newMail () { $bodyTop = '-------- ' . _("Original Message") . " --------\n" . _("Subject") . ': ' . $orig_header->subject . "\n" . _("From") . ': ' . $orig_header->from . "\n" . - _("Date") . ': ' . getLongDateString( $orig_header->date ). "\n" . + _("Date") . ': ' . + getLongDateString( $orig_header->date ). "\n" . _("To") . ': ' . $orig_header->to[0] . "\n"; - if (count($orig_header->to) > 1) { - for ($x=1; $x < count($orig_header->to); $x++) { - $bodyTop .= ' ' . $orig_header->to[$x] . "\n"; - } - } - $bodyTop .= "\n"; - $body = $bodyTop . $body; - } else if ($reply_id) { - $orig_from = decodeHeader($orig_header->from); - $body = getReplyCitation($orig_from) . $body; - } + if (count($orig_header->to) > 1) { + for ($x=1; $x < count($orig_header->to); $x++) { + $bodyTop .= ' ' . $orig_header->to[$x] . "\n"; + } + } + if (isset($forward_cc) && $forward_cc) { + $bodyTop .= _("Cc") . ': ' . $orig_header->cc[0] . "\n"; + if (count($orig_header->cc) > 1) { + for ($x = 1; $x < count($orig_header->cc); $x++) { + $bodyTop .= ' ' . $orig_header->cc[$x] . "\n"; + } + } + } + $bodyTop .= "\n"; + $body = $bodyTop . $body; + } + elseif ($reply_id) { + $orig_from = decodeHeader($orig_header->from, false); + $body = getReplyCitation($orig_from) . $body; + } - return; + return; } if (!$send_to) { - $send_to = sqimap_find_email($send_to); + $send_to = sqimap_find_email($send_to); } /* This formats a CC string if they hit "reply all" */ if ($send_to_cc != '') { $send_to_cc = ereg_replace('"[^"]*"', '', $send_to_cc); - $send_to_cc = ereg_replace(';', ',', $send_to_cc); + $send_to_cc = str_replace(';', ',', $send_to_cc); $sendcc = explode(',', $send_to_cc); $send_to_cc = ''; @@ -171,14 +488,14 @@ function newMail () { } /* function newMail() */ -function getAttachments($message) { +function getAttachments($message, $session) { global $mailbox, $attachments, $attachment_dir, $imapConnection, $ent_num, $forward_id, $draft_id, $username; if (isset($draft_id)) { - $id = $draft_id; + $id = $draft_id; } else { - $id = $forward_id; + $id = $forward_id; } if (!$message) { @@ -206,7 +523,9 @@ function getAttachments($message) { $newAttachment['localfilename'] = $localfilename; $newAttachment['remotefilename'] = $filename; $newAttachment['type'] = strtolower($message->header->type0 . - '/' . $message->header->type1); + '/' . $message->header->type1); + $newAttachment['id'] = strtolower($message->header->id); + $newAttachment['session'] = $session; /* Write Attachment to file */ $fp = fopen ("$hashed_attachment_dir/$localfilename", 'w'); @@ -219,24 +538,25 @@ function getAttachments($message) { } } else { for ($i = 0; $i < count($message->entities); $i++) { - getAttachments($message->entities[$i]); + getAttachments($message->entities[$i], $session); } } return; } -function showInputForm () { +function showInputForm ($session) { global $send_to, $send_to_cc, $reply_subj, $forward_subj, $body, $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, $username, $data_dir, $identity, $draft_id, $delete_draft, - $mailprio; + $mailprio, $default_use_mdn, $mdn_user_support, $compose_new_win, + $saved_draft, $mail_sent, $sig_first; - $subject = decodeHeader($subject); - $reply_subj = decodeHeader($reply_subj); - $forward_subj = decodeHeader($forward_subj); + $subject = decodeHeader($subject, false); + $reply_subj = decodeHeader($reply_subj, false); + $forward_subj = decodeHeader($forward_subj, false); if ($use_javascript_addr_book) { echo "\n". '\n"; + } else { + echo " "; + } + echo "\n \n"; + if ($save_as_draft) { + echo '\n"; + } + do_hook('compose_button_row'); - function showComposeButtonRow() { - global $use_javascript_addr_book, $save_as_draft, - $default_use_priority, $mailprio; - - echo " \n \n"; - if ($use_javascript_addr_book) { - echo " \n"; - } else { - echo " "; - } - echo "\n \n"; + echo " \n\n"; +} - if ($save_as_draft) { - echo '\n"; - } - if ($default_use_priority) { - if(!isset($mailprio)) { - $mailprio = "3"; - } - echo "\n\t". _("Priority") .":"; - } - - do_hook("compose_button_row"); - - echo " \n"; - echo " \n\n"; - } - - function checkInput ($show) { - /** I implemented the $show variable because the error messages - were getting sent before the page header. So, I check once - using $show=false, and then when i'm ready to display the - error message, show=true **/ - global $body, $send_to, $subject, $color; - - if ($send_to == "") { - if ($show) +function checkInput ($show) { + /* + * I implemented the $show variable because the error messages + * were getting sent before the page header. So, I check once + * using $show=false, and then when i'm ready to display the error + * message, show=true + */ + global $body, $send_to, $subject, $color; + + if ($send_to == "") { + if ($show) { plain_error_message(_("You have not filled in the \"To:\" field."), $color); - return false; - } - return true; - } // function checkInput() - - - // True if FAILURE - function saveAttachedFiles() { - global $HTTP_POST_FILES, $attachment_dir, $attachments, $username; - - $hashed_attachment_dir = getHashedDir($username, $attachment_dir); - $localfilename = GenerateRandomString(32, '', 7); - $full_localfilename = "$hashed_attachment_dir/$localfilename"; - while (file_exists($full_localfilename)) { - $localfilename = GenerateRandomString(32, '', 7); - $full_localfilename = "$hashed_attachment_dir/$localfilename"; - } - - if (!@rename($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) { - if (!@copy($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) { + } + return false; + } + return true; +} /* function checkInput() */ + + +/* True if FAILURE */ +function saveAttachedFiles($session) { + global $HTTP_POST_FILES, $attachment_dir, $attachments, $username; + + $hashed_attachment_dir = getHashedDir($username, $attachment_dir); + $localfilename = GenerateRandomString(32, '', 7); + $full_localfilename = "$hashed_attachment_dir/$localfilename"; + while (file_exists($full_localfilename)) { + $localfilename = GenerateRandomString(32, '', 7); + $full_localfilename = "$hashed_attachment_dir/$localfilename"; + } + + if (!@rename($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) { + if (!@copy($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) { return true; - } - } + } + } - $newAttachment['localfilename'] = $localfilename; - $newAttachment['remotefilename'] = $HTTP_POST_FILES['attachfile']['name']; - $newAttachment['type'] = - strtolower($HTTP_POST_FILES['attachfile']['type']); + $newAttachment['localfilename'] = $localfilename; + $newAttachment['remotefilename'] = $HTTP_POST_FILES['attachfile']['name']; + $newAttachment['type'] = strtolower($HTTP_POST_FILES['attachfile']['type']); + $newAttachment['session'] = $session; - if ($newAttachment['type'] == "") + if ($newAttachment['type'] == "") { $newAttachment['type'] = 'application/octet-stream'; + } + + $attachments[] = $newAttachment; +} + - $attachments[] = $newAttachment; +function ClearAttachments($session) +{ + global $username, $attachments, $attachment_dir; + $hashed_attachment_dir = getHashedDir($username, $attachment_dir); + + $rem_attachments = array(); + foreach ($attachments as $info) { + if ($info['session'] == $session) { + $attached_file = "$hashed_attachment_dir/$info[localfilename]"; + if (file_exists($attached_file)) { + unlink($attached_file); + } + } else { + $rem_attachments[] = $info; + } } + $attachments = $rem_attachments; +} - if (!isset($mailbox) || $mailbox == '' || ($mailbox == 'None')) - $mailbox = "INBOX"; - if (isset($draft)) { - require_once ('../src/draft_actions.php'); - if (!saveMessageAsDraft($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id)) { - showInputForm(); - exit(); - } else { - $draft_message = _("Draft Email Saved"); - /* If this is a resumed draft, then delete the original */ - if(isset($delete_draft)) { - Header("Location: delete_message.php?mailbox=$draft_folder&message=$delete_draft&sort=$sort&startMessage=1"); - exit(); - } else { - Header("Location: right_main.php?mailbox=$draft_folder&sort=$sort&startMessage=1¬e=$draft_message"); - exit(); - } - } - } - - if (isset($send)) { - if (isset($HTTP_POST_FILES['attachfile']) && - $HTTP_POST_FILES['attachfile']['tmp_name'] && - $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none') - $AttachFailure = saveAttachedFiles(); - if (checkInput(false) && !isset($AttachFailure)) { - $urlMailbox = urlencode (trim($mailbox)); - if (! isset($reply_id)) - $reply_id = 0; - // 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) { - if( $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 (! isset($mailprio)) - $Result = sendMessage($send_to, $send_to_cc, $send_to_bcc, - $subject, $body, $reply_id); - else - $Result = sendMessage($send_to, $send_to_cc, $send_to_bcc, - $subject, $body, $reply_id, $mailprio); - if (! $Result) { - showInputForm(); - exit(); - } - if ( isset($delete_draft)) { - Header("Location: delete_message.php?mailbox=$draft_folder&message=$delete_draft&sort=$sort&startMessage=1"); - exit(); - } - - Header("Location: right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=1"); - } else { - //$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); - displayPageHeader($color, $mailbox); - - if (isset($AttachFailure)) - plain_error_message(_("Could not move/copy file. File not attached"), $color); - - checkInput(true); - - showInputForm(); - //sqimap_logout($imapConnection); - } - } else if (isset($html_addr_search_done)) { - displayPageHeader($color, $mailbox); - - if (isset($send_to_search) && is_array($send_to_search)) { - foreach ($send_to_search as $k => $v) { - if (substr($k, 0, 1) == 'T') { - if ($send_to) - $send_to .= ', '; - $send_to .= $v; - } - elseif (substr($k, 0, 1) == 'C') { - if ($send_to_cc) - $send_to_cc .= ', '; - $send_to_cc .= $v; - } - elseif (substr($k, 0, 1) == 'B') { - if ($send_to_bcc) - $send_to_bcc .= ', '; - $send_to_bcc .= $v; - } - } - } - - showInputForm(); - } else if (isset($html_addr_search)) { - if (isset($HTTP_POST_FILES['attachfile']) && - $HTTP_POST_FILES['attachfile']['tmp_name'] && - $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none') - { - if (saveAttachedFiles()) - plain_error_message(_("Could not move/copy file. File not attached"), $color); - } - // I am using an include so as to elminiate an extra unnecessary click. If you - // can think of a better way, please implement it. - include_once('./addrbook_search_html.php'); - } else if (isset($attach)) { - if (saveAttachedFiles()) - plain_error_message(_("Could not move/copy file. File not attached"), $color); - displayPageHeader($color, $mailbox); - showInputForm(); - } else if (isset($do_delete)) { - displayPageHeader($color, $mailbox); - - $hashed_attachment_dir = getHashedDir($username, $attachment_dir); - if (isset($delete) && is_array($delete)) { - foreach($delete as $index) { - $attached_file = $hashed_attachment_dir . '/' - . $attachments[$index]['localfilename']; - unlink ($attached_file); - unset ($attachments[$index]); - } - } - - showInputForm(); - } else { - // This handles the default case as well as the error case - // (they had the same code) --> if (isset($smtpErrors)) - $imapConnection = sqimap_login($username, $key, $imapServerAddress, - $imapPort, 0); - displayPageHeader($color, $mailbox); - - $newmail = true; - - ClearAttachments(); - - if (isset($forward_id) && $forward_id && isset($ent_num) && $ent_num) - getAttachments(0); - - if (isset($draft_id) && $draft_id && isset($ent_num) && $ent_num) - getAttachments(0); - - newMail(); - showInputForm(); - sqimap_logout($imapConnection); - } - - function ClearAttachments() { - global $username, $attachments, $attachment_dir; - $hashed_attachment_dir = getHashedDir($username, $attachment_dir); - - foreach ($attachments as $info) { - $attached_file = "$hashed_attachment_dir/$info[localfilename]"; - if (file_exists($attached_file)) { - unlink($attached_file); - } - } +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 ''; + } + + /* Decode the users name. */ + $parpos = strpos($orig_from, '('); + if ($parpos === false) { + $orig_from = trim(substr($orig_from, 0, strpos($orig_from, '<'))); + $orig_from = str_replace('"', '', $orig_from); + $orig_from = str_replace("'", '', $orig_from); + } else { + $end_parpos = strrpos($orig_from, ')'); + $end_parpos -= ($end_parpos === false ? $end_parpos : $parpos + 1); + $orig_from = trim(substr($orig_from, $parpos + 1, $end_parpos)); + } + + /* Make sure our final value isn't an empty string. */ + if ($orig_from == '') { + 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"); +} - $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 (''); - } - - /* Decode the users name. */ - $parpos = strpos($orig_from, '('); - if ($parpos === false) { - $orig_from = trim(substr($orig_from, 0, strpos($orig_from, '<'))); - $orig_from = str_replace('"', '', $orig_from); - $orig_from = str_replace("'", '', $orig_from); - } else { - $end_parpos = strrpos($orig_from, ')'); - $end_parpos -= ($end_parpos === false ? $end_parpos : $parpos + 1); - $orig_from = trim(substr($orig_from, $parpos + 1, $end_parpos)); - } - - /* Make sure our final value isn't an empty string. */ - if ($orig_from == '') { - 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"); - } ?>