source: github/program/steps/mail/sendmail.inc @ 606fc01

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 606fc01 was 606fc01, checked in by till <till@…>, 5 years ago
  • Property mode set to 100644
File size: 13.2 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/steps/mail/sendmail.inc                                       |
6 |                                                                       |
7 | This file is part of the RoundCube Webmail client                     |
8 | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   Compose a new mail message with all headers and attachments         |
13 |   and send it using IlohaMail's SMTP methods or with PHP mail()       |
14 |                                                                       |
15 +-----------------------------------------------------------------------+
16 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
17 +-----------------------------------------------------------------------+
18
19 $Id$
20
21*/
22
23
24//require_once('lib/smtp.inc');
25require_once('lib/html2text.inc');
26require_once('lib/rc_mail_mime.inc');
27
28
29if (!isset($_SESSION['compose']['id']))
30  {
31  rcmail_overwrite_action('list');
32  return;
33  }
34
35
36/****** message sending functions ********/
37
38
39// get identity record
40function rcmail_get_identity($id)
41  {
42  global $USER, $OUTPUT;
43 
44  if ($sql_arr = $USER->get_identity($id))
45    {
46    $out = $sql_arr;
47    $out['mailto'] = $sql_arr['email'];
48    $name = strpos($sql_arr['name'], ",") ? '"'.$sql_arr['name'].'"' : $sql_arr['name'];
49    $out['string'] = sprintf('%s <%s>',
50                             rcube_charset_convert($name, RCMAIL_CHARSET, $OUTPUT->get_charset()),
51                             $sql_arr['email']);
52    return $out;
53    }
54
55  return FALSE; 
56  }
57
58/**
59 * go from this:
60 * <img src=".../tiny_mce/plugins/emotions/images/smiley-cool.gif" border="0" alt="Cool" title="Cool" />
61 *
62 * to this:
63 *
64 * <IMG src="cid:smiley-cool.gif"/>
65 * ...
66 * ------part...
67 * Content-Type: image/gif
68 * Content-Transfer-Encoding: base64
69 * Content-ID: <smiley-cool.gif>
70 */
71function rcmail_attach_emoticons(&$mime_message)
72{
73  global $CONFIG, $INSTALL_PATH;
74
75  $htmlContents = $mime_message->getHtmlBody();
76
77  // remove any null-byte characters before parsing
78  $body = preg_replace('/\x00/', '', $htmlContents);
79 
80  $last_img_pos = 0;
81
82  $searchstr = 'program/js/tiny_mce/plugins/emotions/images/';
83
84  // keep track of added images, so they're only added once
85  $included_images = array();
86
87  // find emoticon image tags
88  while ($pos = strpos($body, $searchstr, $last_img_pos))
89    {
90    $pos2 = strpos($body, '"', $pos);
91    $body_pre = substr($body, 0, $pos);
92    $image_name = substr($body,
93                         $pos + strlen($searchstr),
94                         $pos2 - ($pos + strlen($searchstr)));
95    // sanitize image name so resulting attachment doesn't leave images dir
96    $image_name = preg_replace('/[^a-zA-Z0-9_\.\-]/i','',$image_name);
97
98    $body_post = substr($body, $pos2);
99
100    if (! in_array($image_name, $included_images))
101      {
102      // add the image to the MIME message
103      $img_file = $INSTALL_PATH . '/' . $searchstr . $image_name;
104      if(! $mime_message->addHTMLImage($img_file, 'image/gif', '', true, '_' . $image_name))
105        $OUTPUT->show_message("emoticonerror", 'error');
106
107      array_push($included_images, $image_name);
108      }
109
110    $body = $body_pre . 'cid:_' . $image_name . $body_post;
111
112    $last_img_pos = $pos2;
113    }
114   
115  $mime_message->setHTMLBody($body);
116}
117
118if (strlen($_POST['_draft_saveid']) > 3)
119  $olddraftmessageid = get_input_value('_draft_saveid', RCUBE_INPUT_POST);
120
121$message_id = sprintf('<%s@%s>', md5(uniqid('rcmail'.rand(),true)), rcmail_mail_domain($_SESSION['imap_host']));
122$savedraft = !empty($_POST['_draft']) ? TRUE : FALSE;
123
124// remove all scripts and act as called in frame
125$OUTPUT->reset();
126$OUTPUT->framed = TRUE;
127
128
129/****** check submission and compose message ********/
130
131
132if (!$savedraft && empty($_POST['_to']) && empty($_POST['_subject']) && $_POST['_message'])
133  {
134  $OUTPUT->show_message("sendingfailed", 'error');
135  $OUTPUT->send('iframe');
136  return;
137  }
138
139
140// set default charset
141$input_charset = $OUTPUT->get_charset();
142$message_charset = isset($_POST['_charset']) ? $_POST['_charset'] : $input_charset;
143
144$mailto_regexp = array('/[,;]\s*[\r\n]+/', '/[\r\n]+/', '/[,;]\s*$/m', '/;/');
145$mailto_replace = array(', ', ', ', '', ',');
146
147// replace new lines and strip ending ', '
148$mailto = preg_replace($mailto_regexp, $mailto_replace, get_input_value('_to', RCUBE_INPUT_POST, TRUE, $message_charset));
149
150// decode address strings
151$to_address_arr = $IMAP->decode_address_list($mailto);
152$identity_arr = rcmail_get_identity(get_input_value('_from', RCUBE_INPUT_POST));
153
154$from = $identity_arr['mailto'];
155$first_to = is_array($to_address_arr[0]) ? $to_address_arr[0]['mailto'] : $mailto;
156
157if (empty($identity_arr['string']))
158  $identity_arr['string'] = $from;
159
160// compose headers array
161$headers = array('Date' => date('r'),
162                 'From' => rcube_charset_convert($identity_arr['string'], RCMAIL_CHARSET, $message_charset),
163                 'To'   => $mailto);
164
165// additional recipients
166if (!empty($_POST['_cc']))
167  $headers['Cc'] = preg_replace($mailto_regexp, $mailto_replace, get_input_value('_cc', RCUBE_INPUT_POST, TRUE, $message_charset));
168
169if (!empty($_POST['_bcc']))
170  $headers['Bcc'] = preg_replace($mailto_regexp, $mailto_replace, get_input_value('_bcc', RCUBE_INPUT_POST, TRUE, $message_charset));
171 
172if (!empty($identity_arr['bcc']))
173  $headers['Bcc'] = ($headers['Bcc'] ? $headers['Bcc'].', ' : '') . $identity_arr['bcc'];
174
175// add subject
176$headers['Subject'] = trim(get_input_value('_subject', RCUBE_INPUT_POST, FALSE, $message_charset));
177
178if (!empty($identity_arr['organization']))
179  $headers['Organization'] = $identity_arr['organization'];
180
181if (!empty($_POST['_replyto']))
182  $headers['Reply-To'] = preg_replace($mailto_regexp, $mailto_replace, get_input_value('_replyto', RCUBE_INPUT_POST, TRUE, $message_charset));
183else if (!empty($identity_arr['reply-to']))
184  $headers['Reply-To'] = $identity_arr['reply-to'];
185
186if (!empty($_SESSION['compose']['reply_msgid']))
187  $headers['In-Reply-To'] = $_SESSION['compose']['reply_msgid'];
188
189if (!empty($_SESSION['compose']['references']))
190  $headers['References'] = $_SESSION['compose']['references'];
191
192if (!empty($_POST['_priority']))
193  {
194  $priority = intval($_POST['_priority']);
195  $a_priorities = array(1=>'highest', 2=>'high', 4=>'low', 5=>'lowest');
196  if ($str_priority = $a_priorities[$priority])
197    $headers['X-Priority'] = sprintf("%d (%s)", $priority, ucfirst($str_priority));
198  }
199
200if (!empty($_POST['_receipt']))
201  {
202  $headers['Return-Receipt-To'] = $identity_arr['string'];
203  $headers['Disposition-Notification-To'] = $identity_arr['string'];
204  }
205
206// additional headers
207$headers['Message-ID'] = $message_id;
208$headers['X-Sender'] = $from;
209$headers['Received'] =  wordwrap('from ' .
210  (isset($_SERVER['HTTP_X_FORWARDED_FOR']) ?
211    gethostbyaddr($_SERVER['HTTP_X_FORWARDED_FOR']).' ['.$_SERVER['HTTP_X_FORWARDED_FOR'].'] via ' : '') .
212  gethostbyaddr($_SERVER['REMOTE_ADDR']).' ['.$_SERVER['REMOTE_ADDR'].'] with ' .
213  $_SERVER['SERVER_PROTOCOL'].' ('.$_SERVER['REQUEST_METHOD'].'); ' . date('r'),
214  69, rcmail_header_delm() . "\t");
215
216if (!empty($CONFIG['useragent']))
217  $headers['User-Agent'] = $CONFIG['useragent'];
218
219// fetch message body
220$message_body = get_input_value('_message', RCUBE_INPUT_POST, TRUE, $message_charset);
221
222// append generic footer to all messages
223if (!$savedraft && !empty($CONFIG['generic_message_footer']) && ($footer = file_get_contents(realpath($CONFIG['generic_message_footer']))))
224  $message_body .= "\r\n" . rcube_charset_convert($footer, 'UTF-8', $message_charset);
225
226$isHtmlVal = strtolower(get_input_value('_is_html', RCUBE_INPUT_POST));
227$isHtml = ($isHtmlVal == "1");
228
229// create extended PEAR::Mail_mime instance
230$MAIL_MIME = new rc_mail_mime(rcmail_header_delm());
231
232// For HTML-formatted messages, construct the MIME message with both
233// the HTML part and the plain-text part
234
235if ($isHtml)
236  {
237  $MAIL_MIME->setHTMLBody($message_body);
238
239  // add a plain text version of the e-mail as an alternative part.
240  $h2t = new html2text($message_body);
241  $plainTextPart = wordwrap($h2t->get_text(), 998, "\r\n", true);
242  $MAIL_MIME->setTXTBody(html_entity_decode($plainTextPart, ENT_COMPAT, 'utf-8'));
243
244  // look for "emoticon" images from TinyMCE and copy into message as attachments
245  rcmail_attach_emoticons($MAIL_MIME);
246  }
247else
248  {
249  $message_body = wordwrap($message_body, 75, "\r\n");
250  $message_body = wordwrap($message_body, 998, "\r\n", true);
251  $MAIL_MIME->setTXTBody($message_body, FALSE, TRUE);
252  }
253
254
255// add stored attachments, if any
256if (is_array($_SESSION['compose']['attachments']))
257  foreach ($_SESSION['compose']['attachments'] as $id => $attachment)
258  {
259    $dispurl = '/\ssrc\s*=\s*[\'"]?\S+display-attachment\S+file=rcmfile' . $id . '[\'"]?/';
260    $match = preg_match($dispurl, $message_body);
261    if ($isHtml && ($match > 0))
262    {
263      $message_body = preg_replace($dispurl, ' src="'.$attachment['name'].'"', $message_body);
264      $MAIL_MIME->setHTMLBody($message_body);
265      $MAIL_MIME->addHTMLImage($attachment['path'], $attachment['mimetype'], $attachment['name']);
266    }
267    else
268    {
269      $MAIL_MIME->addAttachment($attachment['path'], $attachment['mimetype'], $attachment['name'], true, 'base64', 'attachment', $message_charset);
270    }
271  }
272
273// add submitted attachments
274if (is_array($_FILES['_attachments']['tmp_name']))
275  foreach ($_FILES['_attachments']['tmp_name'] as $i => $filepath)
276    $MAIL_MIME->addAttachment($filepath, $files['type'][$i], $files['name'][$i], true, 'base64', 'attachment', $message_charset);
277
278
279// chose transfer encoding
280$charset_7bit = array('ASCII', 'ISO-2022-JP', 'ISO-8859-1', 'ISO-8859-2', 'ISO-8859-15');
281$transfer_encoding = in_array(strtoupper($message_charset), $charset_7bit) ? '7bit' : '8bit';
282
283// encoding settings for mail composing
284$MAIL_MIME->setParam(array(
285  'text_encoding' => $transfer_encoding,
286  'html_encoding' => 'quoted-printable',
287  'head_encoding' => 'quoted-printable',
288  'head_charset'  => $message_charset,
289  'html_charset'  => $message_charset,
290  'text_charset'  => $message_charset,
291));
292
293// encoding subject header with mb_encode provides better results with asian characters
294if ($MBSTRING && function_exists("mb_encode_mimeheader"))
295{
296  mb_internal_encoding($message_charset);
297  $headers['Subject'] = mb_encode_mimeheader($headers['Subject'], $message_charset, 'Q');
298  mb_internal_encoding(RCMAIL_CHARSET);
299}
300
301// pass headers to message object
302$MAIL_MIME->headers($headers);
303
304// Begin SMTP Delivery Block
305if (!$savedraft)
306{
307  $sent = rcmail_deliver_message($MAIL_MIME, $from, $mailto);
308 
309  // return to compose page if sending failed
310  if (!$sent)
311    {
312    $OUTPUT->show_message("sendingfailed", 'error');
313    $OUTPUT->send('iframe');
314    return;
315    }
316 
317  // set repliead flag
318  if ($_SESSION['compose']['reply_uid'])
319    $IMAP->set_flag($_SESSION['compose']['reply_uid'], 'ANSWERED');
320
321  } // End of SMTP Delivery Block
322
323
324
325// Determine which folder to save message
326if ($savedraft)
327  $store_target = 'drafts_mbox';
328else
329  $store_target = 'sent_mbox';
330
331if ($CONFIG[$store_target])
332  {
333  // check if mailbox exists
334  if (!in_array_nocase($CONFIG[$store_target], $IMAP->list_mailboxes()))
335    $store_folder = $IMAP->create_mailbox($CONFIG[$store_target], TRUE);
336  else
337    $store_folder = TRUE;
338 
339  // append message to sent box
340  if ($store_folder)
341    $saved = $IMAP->save_message($CONFIG[$store_target], $MAIL_MIME->getMessage());
342
343  // raise error if saving failed
344  if (!$saved)
345    {
346    raise_error(array('code' => 800, 'type' => 'imap', 'file' => __FILE__,
347                      'message' => "Could not save message in $CONFIG[$store_target]"), TRUE, FALSE);
348   
349    $OUTPUT->show_message('errorsaving', 'error');
350    $OUTPUT->send('iframe');
351    }
352
353  if ($olddraftmessageid)
354    {
355    // delete previous saved draft
356    $a_deleteid = $IMAP->search($CONFIG['drafts_mbox'],'HEADER Message-ID',$olddraftmessageid);
357    $deleted = $IMAP->delete_message($IMAP->get_uid($a_deleteid[0],$CONFIG['drafts_mbox']),$CONFIG['drafts_mbox']);
358
359    // raise error if deletion of old draft failed
360    if (!$deleted)
361      raise_error(array('code' => 800, 'type' => 'imap', 'file' => __FILE__,
362                        'message' => "Could not delete message from ".$CONFIG['drafts_mbox']), TRUE, FALSE);
363    }
364  }
365
366if ($savedraft)
367  {
368  // display success
369  $OUTPUT->show_message('messagesaved', 'confirmation');
370
371  // update "_draft_saveid" and the "cmp_hash" to prevent "Unsaved changes" warning
372  $OUTPUT->command('set_draft_id', str_replace(array('<','>'), "", $message_id));
373  $OUTPUT->command('compose_field_hash', true);
374
375  // start the auto-save timer again
376  $OUTPUT->command('auto_save_start');
377
378  $OUTPUT->send('iframe');
379  }
380else
381  {
382  if ($CONFIG['smtp_log'])
383    {
384    $log_entry = sprintf(
385      "[%s] User: %d on %s; Message for %s; %s\n",
386      date("d-M-Y H:i:s O", mktime()),
387      $_SESSION['user_id'],
388      $_SERVER['REMOTE_ADDR'],
389      $mailto,
390      !empty($smtp_response) ? join('; ', $smtp_response) : '');
391
392    if ($fp = @fopen($CONFIG['log_dir'].'/sendmail', 'a'))
393      {
394      fwrite($fp, $log_entry);
395      fclose($fp);
396      }
397    }
398
399  rcmail_compose_cleanup();
400  $OUTPUT->command('sent_successfully', rcube_label('messagesent'));
401  $OUTPUT->send('iframe');
402  }
403
404?>
Note: See TracBrowser for help on using the repository browser.