| | |
| | | <?php |
| | | |
| | | /* |
| | | /** |
| | | +-----------------------------------------------------------------------+ |
| | | | program/steps/mail/sendmail.inc | |
| | | | | |
| | |
| | | $OUTPUT->reset(); |
| | | $OUTPUT->framed = TRUE; |
| | | |
| | | $savedraft = !empty($_POST['_draft']) ? true : false; |
| | | $saveonly = !empty($_GET['_saveonly']); |
| | | $savedraft = !empty($_POST['_draft']) && !$saveonly; |
| | | $sendmail_delay = (int) $RCMAIL->config->get('sendmail_delay'); |
| | | $drafts_mbox = $RCMAIL->config->get('drafts_mbox'); |
| | | |
| | |
| | | $from = trim($m[1], '<>'); |
| | | else |
| | | $from = null; |
| | | } |
| | | |
| | | // check 'From' address (identity may be incomplete) |
| | | if (!$savedraft && !$saveonly && empty($from)) { |
| | | $OUTPUT->show_message('nofromaddress', 'error'); |
| | | $OUTPUT->send('iframe'); |
| | | } |
| | | |
| | | if (!$from_string && $from) { |
| | |
| | | $MAIL_MIME->setParam('html_charset', $message_charset); |
| | | $MAIL_MIME->setParam('text_charset', $text_charset); |
| | | |
| | | // encoding subject header with mb_encode provides better results with asian characters |
| | | if (function_exists('mb_encode_mimeheader')) { |
| | | mb_internal_encoding($message_charset); |
| | | $headers['Subject'] = mb_encode_mimeheader($headers['Subject'], |
| | | $message_charset, 'Q', "\r\n", 8); |
| | | mb_internal_encoding(RCUBE_CHARSET); |
| | | } |
| | | |
| | | // pass headers to message object |
| | | $MAIL_MIME->headers($headers); |
| | | |
| | | // Begin SMTP Delivery Block |
| | | if (!$savedraft) { |
| | | // check 'From' address (identity may be incomplete) |
| | | if (empty($from)) { |
| | | $OUTPUT->show_message('nofromaddress', 'error'); |
| | | $OUTPUT->send('iframe'); |
| | | } |
| | | // This hook allows to modify the message before send or save action |
| | | $plugin = $RCMAIL->plugins->exec_hook('message_ready', array('message' => $MAIL_MIME)); |
| | | $MAIL_MIME = $plugin['message']; |
| | | |
| | | // Begin SMTP Delivery Block |
| | | if (!$savedraft && !$saveonly) { |
| | | // Handle Delivery Status Notification request |
| | | $smtp_opts['dsn'] = $dsn_enabled; |
| | | |
| | |
| | | else { |
| | | $temp_dir = $RCMAIL->config->get('temp_dir'); |
| | | $mailbody_file = tempnam($temp_dir, 'rcmMsg'); |
| | | $msg = $MAIL_MIME->saveMessageBody($mailbody_file); |
| | | |
| | | if (!PEAR::isError($msg = $MAIL_MIME->saveMessageBody($mailbody_file))) { |
| | | if (!is_a($msg, 'PEAR_Error')) { |
| | | $msg = $mailbody_file; |
| | | } |
| | | } |
| | |
| | | $headers = ''; |
| | | } |
| | | |
| | | if (PEAR::isError($msg)) { |
| | | if (is_a($msg, 'PEAR_Error')) { |
| | | rcube::raise_error(array('code' => 650, 'type' => 'php', |
| | | 'file' => __FILE__, 'line' => __LINE__, |
| | | 'message' => "Could not create message: ".$msg->getMessage()), |
| | |
| | | 'message' => "Could not save message in $store_target"), true, false); |
| | | |
| | | if ($savedraft) { |
| | | $OUTPUT->show_message('errorsaving', 'error'); |
| | | $RCMAIL->display_server_error('errorsaving'); |
| | | |
| | | // start the auto-save timer again |
| | | $OUTPUT->command('auto_save_start'); |
| | | $OUTPUT->send('iframe'); |
| | | } |
| | | } |
| | | |
| | | // delete previous saved draft |
| | | if ($saved && ($old_id = rcube_utils::get_input_value('_draft_saveid', rcube_utils::INPUT_POST))) { |
| | | $deleted = $RCMAIL->storage->delete_message($old_id, $drafts_mbox); |
| | | |
| | | // raise error if deletion of old draft failed |
| | | if (!$deleted) { |
| | | rcube::raise_error(array('code' => 800, 'type' => 'imap', |
| | | 'file' => __FILE__, 'line' => __LINE__, |
| | | 'message' => "Could not delete message from $drafts_mbox"), true, false); |
| | | } |
| | | } |
| | | } |
| | |
| | | unlink($mailbody_file); |
| | | } |
| | | |
| | | // delete previous saved draft |
| | | $old_id = rcube_utils::get_input_value('_draft_saveid', rcube_utils::INPUT_POST); |
| | | if ($old_id && ($sent || $saved)) { |
| | | $deleted = $RCMAIL->storage->delete_message($old_id, $drafts_mbox); |
| | | |
| | | // raise error if deletion of old draft failed |
| | | if (!$deleted) { |
| | | rcube::raise_error(array('code' => 800, 'type' => 'imap', |
| | | 'file' => __FILE__, 'line' => __LINE__, |
| | | 'message' => "Could not delete message from $drafts_mbox"), true, false); |
| | | } |
| | | } |
| | | |
| | | if ($savedraft) { |
| | | // remember new draft-uid ($saved could be an UID or true/false here) |
| | |
| | | $OUTPUT->command('auto_save_start'); |
| | | } |
| | | else { |
| | | // Collect folders which could contain the composed message, |
| | | // we'll refresh the list if currently opened folder is one of them (#1490238) |
| | | $folders = array(); |
| | | |
| | | if ($COMPOSE['mode'] == 'reply' || $COMPOSE['mode'] == 'forward') { |
| | | $folders[] = $COMPOSE['mailbox']; |
| | | if (!$saveonly) { |
| | | if (in_array($COMPOSE['mode'], array('reply', 'forward', 'draft'))) { |
| | | $folders[] = $COMPOSE['mailbox']; |
| | | } |
| | | if (!empty($COMPOSE['param']['draft_uid']) && $drafts_mbox) { |
| | | $folders[] = $drafts_mbox; |
| | | } |
| | | } |
| | | |
| | | rcmail_compose_cleanup($COMPOSE_ID); |
| | | $OUTPUT->command('remove_compose_data', $COMPOSE_ID); |
| | | |
| | | if ($store_folder && !$saved) { |
| | | $OUTPUT->command('sent_successfully', 'error', $RCMAIL->gettext('errorsavingsent'), $folders); |
| | | $params = $saveonly ? null : array('prefix' => true); |
| | | $RCMAIL->display_server_error('errorsavingsent', null, null, $params); |
| | | if ($saveonly) { |
| | | $OUTPUT->send('iframe'); |
| | | } |
| | | |
| | | $save_error = true; |
| | | } |
| | | else if ($store_folder) { |
| | | $folders[] = $store_target; |
| | | else { |
| | | rcmail_compose_cleanup($COMPOSE_ID); |
| | | $OUTPUT->command('remove_compose_data', $COMPOSE_ID); |
| | | |
| | | if ($store_folder) { |
| | | $folders[] = $store_target; |
| | | } |
| | | } |
| | | |
| | | $OUTPUT->command('sent_successfully', 'confirmation', $RCMAIL->gettext('messagesent'), $folders); |
| | | $msg = $RCMAIL->gettext($saveonly ? 'successfullysaved' : 'messagesent'); |
| | | |
| | | $OUTPUT->command('sent_successfully', 'confirmation', $msg, $folders, $save_error); |
| | | } |
| | | |
| | | $OUTPUT->send('iframe'); |
| | |
| | | // remove any null-byte characters before parsing |
| | | $body = preg_replace('/\x00/', '', $body); |
| | | |
| | | $searchstr = 'program/js/tinymce/plugins/emoticons/img/'; |
| | | $offset = 0; |
| | | $searchstr = 'program/js/tinymce/plugins/emoticons/img/'; |
| | | $assets_dir = $RCMAIL->config->get('assets_dir'); |
| | | $path = ($assets_dir ?: INSTALL_PATH) . '/' . $searchstr; |
| | | $offset = 0; |
| | | |
| | | // keep track of added images, so they're only added once |
| | | $included_images = array(); |
| | |
| | | |
| | | // sanitize image name so resulting attachment doesn't leave images dir |
| | | $image_name = preg_replace('/[^a-zA-Z0-9_\.\-]/i', '', $image_name); |
| | | $img_file = INSTALL_PATH . '/' . $searchstr . $image_name; |
| | | $img_file = $path . $image_name; |
| | | |
| | | if (! in_array($image_name, $included_images)) { |
| | | if (!in_array($image_name, $included_images)) { |
| | | // add the image to the MIME message |
| | | if (!$mime_message->addHTMLImage($img_file, 'image/gif', '', true, $image_name)) { |
| | | $res = $mime_message->addHTMLImage($img_file, 'image/gif', '', true, $image_name); |
| | | if (is_a($res, 'PEAR_Error')) { |
| | | $RCMAIL->output->show_message("emoticonerror", 'error'); |
| | | continue; |
| | | } |
| | | |
| | | array_push($included_images, $image_name); |
| | |
| | | |
| | | return false; |
| | | } |
| | | |
| | | /** |
| | | * clear message composing settings |
| | | */ |
| | | function rcmail_compose_cleanup($id) |
| | | { |
| | | if (!isset($_SESSION['compose_data_'.$id])) { |
| | | return; |
| | | } |
| | | |
| | | $rcmail = rcmail::get_instance(); |
| | | $rcmail->plugins->exec_hook('attachments_cleanup', array('group' => $id)); |
| | | $rcmail->session->remove('compose_data_'.$id); |
| | | |
| | | $_SESSION['last_compose_session'] = $id; |
| | | } |