source: github/program/steps/mail/sendmail.inc @ 823012c

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 823012c was 28f49e0, checked in by svncommit <devs@…>, 5 years ago

Add Received header to outgoing mail.

  • Property mode set to 100644
File size: 13.1 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'] = 'from '.
210  (isset($_SERVER['HTTP_X_FORWARDED_FOR']) ?
211   gethostbyaddr($_SERVER['HTTP_X_FORWARDED_FOR']).' ['.$_SERVER['HTTP_X_FORWARDED_FOR']."]\r\n\tvia " : '').
212  gethostbyaddr($_SERVER['REMOTE_ADDR']).' ['.$_SERVER['REMOTE_ADDR']."]\r\n\t with ".
213  $_SERVER['SERVER_PROTOCOL'].' ('.$_SERVER['REQUEST_METHOD'].'); '.date('r');
214
215if (!empty($CONFIG['useragent']))
216  $headers['User-Agent'] = $CONFIG['useragent'];
217
218// fetch message body
219$message_body = get_input_value('_message', RCUBE_INPUT_POST, TRUE, $message_charset);
220
221// append generic footer to all messages
222if (!$savedraft && !empty($CONFIG['generic_message_footer']) && ($footer = file_get_contents(realpath($CONFIG['generic_message_footer']))))
223  $message_body .= "\r\n" . rcube_charset_convert($footer, 'UTF-8', $message_charset);
224
225$isHtmlVal = strtolower(get_input_value('_is_html', RCUBE_INPUT_POST));
226$isHtml = ($isHtmlVal == "1");
227
228// create extended PEAR::Mail_mime instance
229$MAIL_MIME = new rc_mail_mime(rcmail_header_delm());
230
231// For HTML-formatted messages, construct the MIME message with both
232// the HTML part and the plain-text part
233
234if ($isHtml)
235  {
236  $MAIL_MIME->setHTMLBody($message_body);
237
238  // add a plain text version of the e-mail as an alternative part.
239  $h2t = new html2text($message_body);
240  $plainTextPart = wordwrap($h2t->get_text(), 998, "\r\n", true);
241  $MAIL_MIME->setTXTBody($plainTextPart);
242
243  // look for "emoticon" images from TinyMCE and copy into message as attachments
244  rcmail_attach_emoticons($MAIL_MIME);
245  }
246else
247  {
248  $message_body = wordwrap($message_body, 75, "\r\n");
249  $message_body = wordwrap($message_body, 998, "\r\n", true);
250  $MAIL_MIME->setTXTBody($message_body, FALSE, TRUE);
251  }
252
253
254// add stored attachments, if any
255if (is_array($_SESSION['compose']['attachments']))
256  foreach ($_SESSION['compose']['attachments'] as $id => $attachment)
257  {
258    $dispurl = '/\ssrc\s*=\s*[\'"]?\S+display-attachment\S+file=rcmfile' . $id . '[\'"]?/';
259    $match = preg_match($dispurl, $message_body);
260    if ($isHtml && ($match > 0))
261    {
262      $message_body = preg_replace($dispurl, ' src="'.$attachment['name'].'"', $message_body);
263      $MAIL_MIME->setHTMLBody($message_body);
264      $MAIL_MIME->addHTMLImage($attachment['path'], $attachment['mimetype'], $attachment['name']);
265    }
266    else
267    {
268      $MAIL_MIME->addAttachment($attachment['path'], $attachment['mimetype'], $attachment['name'], true, 'base64', 'attachment', $message_charset);
269    }
270  }
271
272// add submitted attachments
273if (is_array($_FILES['_attachments']['tmp_name']))
274  foreach ($_FILES['_attachments']['tmp_name'] as $i => $filepath)
275    $MAIL_MIME->addAttachment($filepath, $files['type'][$i], $files['name'][$i], true, 'base64', 'attachment', $message_charset);
276
277
278// chose transfer encoding
279$charset_7bit = array('ASCII', 'ISO-2022-JP', 'ISO-8859-1', 'ISO-8859-2', 'ISO-8859-15');
280$transfer_encoding = in_array(strtoupper($message_charset), $charset_7bit) ? '7bit' : '8bit';
281
282// encoding settings for mail composing
283$MAIL_MIME->setParam(array(
284  'text_encoding' => $transfer_encoding,
285  'html_encoding' => 'quoted-printable',
286  'head_encoding' => 'quoted-printable',
287  'head_charset'  => $message_charset,
288  'html_charset'  => $message_charset,
289  'text_charset'  => $message_charset,
290));
291
292// encoding subject header with mb_encode provides better results with asian characters
293if ($MBSTRING && function_exists("mb_encode_mimeheader"))
294{
295  mb_internal_encoding($message_charset);
296  $headers['Subject'] = mb_encode_mimeheader($headers['Subject'], $message_charset, 'Q');
297  mb_internal_encoding(RCMAIL_CHARSET);
298}
299
300// pass headers to message object
301$MAIL_MIME->headers($headers);
302
303// Begin SMTP Delivery Block
304if (!$savedraft)
305{
306  $sent = rcmail_deliver_message($MAIL_MIME, $from, $mailto);
307 
308  // return to compose page if sending failed
309  if (!$sent)
310    {
311    $OUTPUT->show_message("sendingfailed", 'error');
312    $OUTPUT->send('iframe');
313    return;
314    }
315 
316  // set repliead flag
317  if ($_SESSION['compose']['reply_uid'])
318    $IMAP->set_flag($_SESSION['compose']['reply_uid'], 'ANSWERED');
319
320  } // End of SMTP Delivery Block
321
322
323
324// Determine which folder to save message
325if ($savedraft)
326  $store_target = 'drafts_mbox';
327else
328  $store_target = 'sent_mbox';
329
330if ($CONFIG[$store_target])
331  {
332  // check if mailbox exists
333  if (!in_array_nocase($CONFIG[$store_target], $IMAP->list_mailboxes()))
334    $store_folder = $IMAP->create_mailbox($CONFIG[$store_target], TRUE);
335  else
336    $store_folder = TRUE;
337 
338  // append message to sent box
339  if ($store_folder)
340    $saved = $IMAP->save_message($CONFIG[$store_target], $MAIL_MIME->getMessage());
341
342  // raise error if saving failed
343  if (!$saved)
344    {
345    raise_error(array('code' => 800, 'type' => 'imap', 'file' => __FILE__,
346                      'message' => "Could not save message in $CONFIG[$store_target]"), TRUE, FALSE);
347   
348    $OUTPUT->show_message('errorsaving', 'error');
349    $OUTPUT->send('iframe');
350    }
351
352  if ($olddraftmessageid)
353    {
354    // delete previous saved draft
355    $a_deleteid = $IMAP->search($CONFIG['drafts_mbox'],'HEADER Message-ID',$olddraftmessageid);
356    $deleted = $IMAP->delete_message($IMAP->get_uid($a_deleteid[0],$CONFIG['drafts_mbox']),$CONFIG['drafts_mbox']);
357
358    // raise error if deletion of old draft failed
359    if (!$deleted)
360      raise_error(array('code' => 800, 'type' => 'imap', 'file' => __FILE__,
361                        'message' => "Could not delete message from ".$CONFIG['drafts_mbox']), TRUE, FALSE);
362    }
363  }
364
365if ($savedraft)
366  {
367  // display success
368  $OUTPUT->show_message('messagesaved', 'confirmation');
369
370  // update "_draft_saveid" and the "cmp_hash" to prevent "Unsaved changes" warning
371  $OUTPUT->command('set_draft_id', str_replace(array('<','>'), "", $message_id));
372  $OUTPUT->command('compose_field_hash', true);
373
374  // start the auto-save timer again
375  $OUTPUT->command('auto_save_start');
376
377  $OUTPUT->send('iframe');
378  }
379else
380  {
381  if ($CONFIG['smtp_log'])
382    {
383    $log_entry = sprintf(
384      "[%s] User: %d on %s; Message for %s; %s\n",
385      date("d-M-Y H:i:s O", mktime()),
386      $_SESSION['user_id'],
387      $_SERVER['REMOTE_ADDR'],
388      $mailto,
389      !empty($smtp_response) ? join('; ', $smtp_response) : '');
390
391    if ($fp = @fopen($CONFIG['log_dir'].'/sendmail', 'a'))
392      {
393      fwrite($fp, $log_entry);
394      fclose($fp);
395      }
396    }
397
398  rcmail_compose_cleanup();
399  $OUTPUT->command('sent_successfully', rcube_label('messagesent'));
400  $OUTPUT->send('iframe');
401  }
402
403?>
Note: See TracBrowser for help on using the repository browser.