String fix
[squirrelmail.git] / src / compose.php
1 <?php
2
3 /**
4 * compose.php
5 *
6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This code sends a mail.
10 *
11 * There are 4 modes of operation:
12 * - Start new mail
13 * - Add an attachment
14 * - Send mail
15 * - Save As Draft
16 *
17 * @version $Id$
18 * @package squirrelmail
19 */
20
21 /**
22 * Path for SquirrelMail required files.
23 * @ignore
24 */
25 define('SM_PATH','../');
26
27 /* SquirrelMail required files. */
28 require_once(SM_PATH . 'include/validate.php');
29 require_once(SM_PATH . 'functions/global.php');
30 require_once(SM_PATH . 'functions/imap.php');
31 require_once(SM_PATH . 'functions/date.php');
32 require_once(SM_PATH . 'functions/mime.php');
33 require_once(SM_PATH . 'functions/plugin.php');
34 require_once(SM_PATH . 'functions/display_messages.php');
35 require_once(SM_PATH . 'class/deliver/Deliver.class.php');
36 require_once(SM_PATH . 'functions/addressbook.php');
37 require_once(SM_PATH . 'functions/forms.php');
38 require_once(SM_PATH . 'functions/identity.php');
39
40 /* --------------------- Get globals ------------------------------------- */
41 /** COOKIE VARS */
42 sqgetGlobalVar('key', $key, SQ_COOKIE);
43
44 /** SESSION VARS */
45 sqgetGlobalVar('username', $username, SQ_SESSION);
46 sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION);
47 sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION);
48 sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
49
50 sqgetGlobalVar('composesession', $composesession, SQ_SESSION);
51 sqgetGlobalVar('compose_messages', $compose_messages, SQ_SESSION);
52
53 /** SESSION/POST/GET VARS */
54 sqgetGlobalVar('session',$session);
55 sqgetGlobalVar('mailbox',$mailbox);
56 if(!sqgetGlobalVar('identity',$identity)) {
57 $identity=0;
58 }
59 sqgetGlobalVar('send_to',$send_to);
60 sqgetGlobalVar('send_to_cc',$send_to_cc);
61 sqgetGlobalVar('send_to_bcc',$send_to_bcc);
62 sqgetGlobalVar('subject',$subject);
63 sqgetGlobalVar('body',$body);
64 sqgetGlobalVar('mailprio',$mailprio);
65 sqgetGlobalVar('request_mdn',$request_mdn);
66 sqgetGlobalVar('request_dr',$request_dr);
67 sqgetGlobalVar('html_addr_search',$html_addr_search);
68 sqgetGlobalVar('mail_sent',$mail_sent);
69 sqgetGlobalVar('passed_id',$passed_id);
70 sqgetGlobalVar('passed_ent_id',$passed_ent_id);
71 sqgetGlobalVar('send',$send);
72
73 sqgetGlobalVar('attach',$attach);
74
75 sqgetGlobalVar('draft',$draft);
76 sqgetGlobalVar('draft_id',$draft_id);
77 sqgetGlobalVar('ent_num',$ent_num);
78 sqgetGlobalVar('saved_draft',$saved_draft);
79 sqgetGlobalVar('delete_draft',$delete_draft);
80 if ( sqgetGlobalVar('startMessage',$startMessage) ) {
81 $startMessage = (int)$startMessage;
82 } else {
83 $startMessage = 1;
84 }
85
86 /** POST VARS */
87 sqgetGlobalVar('sigappend', $sigappend, SQ_POST);
88 sqgetGlobalVar('from_htmladdr_search', $from_htmladdr_search, SQ_POST);
89 sqgetGlobalVar('addr_search_done', $html_addr_search_done, SQ_POST);
90 sqgetGlobalVar('send_to_search', $send_to_search, SQ_POST);
91 sqgetGlobalVar('do_delete', $do_delete, SQ_POST);
92 sqgetGlobalVar('delete', $delete, SQ_POST);
93 sqgetGlobalVar('restoremessages', $restoremessages, SQ_POST);
94 if ( sqgetGlobalVar('return', $temp, SQ_POST) ) {
95 $html_addr_search_done = 'Use Addresses';
96 }
97
98 /** GET VARS */
99 sqgetGlobalVar('attachedmessages', $attachedmessages, SQ_GET);
100
101 /** get smaction */
102 if ( !sqgetGlobalVar('smaction',$action) )
103 {
104 if ( sqgetGlobalVar('smaction_reply',$tmp) ) $action = 'reply';
105 if ( sqgetGlobalVar('smaction_reply_all',$tmp) ) $action = 'reply_all';
106 if ( sqgetGlobalVar('smaction_forward',$tmp) ) $action = 'forward';
107 if ( sqgetGlobalVar('smaction_attache',$tmp) ) $action = 'forward_as_attachment';
108 if ( sqgetGlobalVar('smaction_draft',$tmp) ) $action = 'draft';
109 if ( sqgetGlobalVar('smaction_edit_new',$tmp) ) $action = 'edit_as_new';
110 }
111
112 /* Location (For HTTP 1.1 Header("Location: ...") redirects) */
113 $location = get_location();
114 /* Identities (fetch only once) */
115 $idents = get_identities();
116
117 /* --------------------- Specific Functions ------------------------------ */
118
119 function replyAllString($header) {
120 global $include_self_reply_all, $idents;
121 $excl_ar = array();
122 /**
123 * 1) Remove the addresses we'll be sending the message 'to'
124 */
125 if (isset($header->replyto)) {
126 $excl_ar = $header->getAddr_a('replyto');
127 }
128 /**
129 * 2) Remove our identities from the CC list (they still can be in the
130 * TO list) only if $include_self_reply_all is turned off
131 */
132 if (!$include_self_reply_all) {
133 foreach($idents as $id) {
134 $excl_ar[strtolower(trim($id['email_address']))] = '';
135 }
136 }
137
138 /**
139 * 3) get the addresses.
140 */
141 $url_replytoall_ar = $header->getAddr_a(array('to','cc'), $excl_ar);
142
143 /**
144 * 4) generate the string.
145 */
146 $url_replytoallcc = '';
147 foreach( $url_replytoall_ar as $email => $personal) {
148 if ($personal) {
149 // if personal name contains address separator then surround
150 // the personal name with double quotes.
151 if (strpos($personal,',') !== false) {
152 $personal = '"'.$personal.'"';
153 }
154 $url_replytoallcc .= ", $personal <$email>";
155 } else {
156 $url_replytoallcc .= ', '. $email;
157 }
158 }
159 $url_replytoallcc = substr($url_replytoallcc,2);
160
161 return $url_replytoallcc;
162 }
163
164 /**
165 * creates top line in reply citations
166 *
167 * Line style depends on user preferences.
168 * $orig_date argument is available only from 1.4.3 and 1.5.1 version.
169 * @param object $orig_from From: header object.
170 * @param integer $orig_date email's timestamp
171 * @return string reply citation
172 */
173 function getReplyCitation($orig_from, $orig_date) {
174 global $reply_citation_style, $reply_citation_start, $reply_citation_end;
175
176 if (!is_object($orig_from)) {
177 $sOrig_from = '';
178 } else {
179 $sOrig_from = decodeHeader($orig_from->getAddress(false),false,false,true);
180 }
181
182 // $from = decodeHeader($orig_header->getAddr_s('from',"\n$indent"),false,false);
183
184 /* First, return an empty string when no citation style selected. */
185 if (($reply_citation_style == '') || ($reply_citation_style == 'none')) {
186 return '';
187 }
188
189 /* Make sure our final value isn't an empty string. */
190 if ($sOrig_from == '') {
191 return '';
192 }
193
194 /* Otherwise, try to select the desired citation style. */
195 switch ($reply_citation_style) {
196 case 'author_said':
197 /**
198 * To translators: %s is for author's name
199 */
200 $full_reply_citation = sprintf(_("%s wrote:"),$sOrig_from);
201 break;
202 case 'quote_who':
203 // FIXME: do we have to translate xml formating?
204 $start = '<' . _("quote") . ' ' . _("who") . '="';
205 $end = '">';
206 $full_reply_citation = $start . $sOrig_from . $end;
207 break;
208 case 'date_time_author':
209 /**
210 * To translators:
211 * first %s is for date string, second %s is for author's name. Date uses
212 * formating from "D, F j, Y g:i a" and "D, F j, Y H:i" translations.
213 * Example string:
214 * "On Sat, December 24, 2004 23:59, Santa wrote:"
215 * If you have to put author's name in front of date string, check comments about
216 * argument swapping at http://www.php.net/sprintf
217 */
218 $full_reply_citation = sprintf(_("On %s, %s wrote:"), getLongDateString($orig_date), $sOrig_from);
219 break;
220 case 'user-defined':
221 $start = $reply_citation_start .
222 ($reply_citation_start == '' ? '' : ' ');
223 $end = $reply_citation_end;
224 $full_reply_citation = $start . $sOrig_from . $end;
225 break;
226 default:
227 return '';
228 }
229
230 /* Add line feed and return the citation string. */
231 return ($full_reply_citation . "\n");
232 }
233
234 /**
235 * Creates header fields in forwarded email body
236 *
237 * $default_charset global must be set correctly before you call this function.
238 * @param object $orig_header
239 * @return $string
240 */
241 function getforwardHeader($orig_header) {
242 global $editor_size, $default_charset;
243
244 // using own strlen function in order to detect correct string length
245 $display = array( _("Subject") => sq_strlen(_("Subject"),$default_charset),
246 _("From") => sq_strlen(_("From"),$default_charset),
247 _("Date") => sq_strlen(_("Date"),$default_charset),
248 _("To") => sq_strlen(_("To"),$default_charset),
249 _("Cc") => sq_strlen(_("Cc"),$default_charset) );
250 $maxsize = max($display);
251 $indent = str_pad('',$maxsize+2);
252 foreach($display as $key => $val) {
253 $display[$key] = $key .': '. str_pad('', $maxsize - $val);
254 }
255 $from = decodeHeader($orig_header->getAddr_s('from',"\n$indent"),false,false,true);
256 $from = str_replace('&nbsp;',' ',$from);
257 $to = decodeHeader($orig_header->getAddr_s('to',"\n$indent"),false,false,true);
258 $to = str_replace('&nbsp;',' ',$to);
259 $subject = decodeHeader($orig_header->subject,false,false,true);
260 $subject = str_replace('&nbsp;',' ',$subject);
261
262 // using own str_pad function in order to create correct string pad
263 $bodyTop = sq_str_pad(' '._("Original Message").' ',$editor_size -2,'-',STR_PAD_BOTH,$default_charset) .
264 "\n". $display[_("Subject")] . $subject . "\n" .
265 $display[_("From")] . $from . "\n" .
266 $display[_("Date")] . getLongDateString( $orig_header->date ). "\n" .
267 $display[_("To")] . $to . "\n";
268 if ($orig_header->cc != array() && $orig_header->cc !='') {
269 $cc = decodeHeader($orig_header->getAddr_s('cc',"\n$indent"),false,false,true);
270 $cc = str_replace('&nbsp;',' ',$cc);
271 $bodyTop .= $display[_("Cc")] .$cc . "\n";
272 }
273 $bodyTop .= str_pad('', $editor_size -2 , '-') .
274 "\n\n";
275 return $bodyTop;
276 }
277 /* ----------------------------------------------------------------------- */
278
279 /*
280 * If the session is expired during a post this restores the compose session
281 * vars.
282 */
283 if (sqsession_is_registered('session_expired_post')) {
284 sqgetGlobalVar('session_expired_post', $session_expired_post, SQ_SESSION);
285 /*
286 * extra check for username so we don't display previous post data from
287 * another user during this session.
288 */
289 if ($session_expired_post['username'] != $username) {
290 unset($session_expired_post);
291 sqsession_unregister('session_expired_post');
292 session_write_close();
293 } else {
294 foreach ($session_expired_post as $postvar => $val) {
295 if (isset($val)) {
296 $$postvar = $val;
297 } else {
298 $$postvar = '';
299 }
300 }
301 $compose_messages = unserialize(urldecode($restoremessages));
302 sqsession_register($compose_messages,'compose_messages');
303 sqsession_register($composesession,'composesession');
304 if (isset($send)) {
305 unset($send);
306 }
307 $session_expired = true;
308 }
309 unset($session_expired_post);
310 sqsession_unregister('session_expired_post');
311 session_write_close();
312 if (!isset($mailbox)) {
313 $mailbox = '';
314 }
315 if ($compose_new_win == '1') {
316 compose_Header($color, $mailbox);
317 } else {
318 $sHeaderJs = (isset($sHeaderJs)) ? $sHeaderJs : '';
319 if (strpos($action, 'reply') !== false && $reply_focus) {
320 $sBodyTagJs = 'onload="checkForm(\''.$replyfocus.'\');"';
321 } else {
322 $sBodyTagJs = 'onload="checkForm();"';
323 }
324 displayPageHeader($color, $mailbox,$sHeaderJs,$sBodyTagJs);
325 }
326 showInputForm($session, false);
327 exit();
328 }
329 if (!isset($composesession)) {
330 $composesession = 0;
331 sqsession_register(0,'composesession');
332 }
333
334 if (!isset($session) || (isset($newmessage) && $newmessage)) {
335 sqsession_unregister('composesession');
336 $session = "$composesession" +1;
337 $composesession = $session;
338 sqsession_register($composesession,'composesession');
339 }
340 if (!isset($compose_messages)) {
341 $compose_messages = array();
342 }
343
344 if (!isset($compose_messages[$session]) || ($compose_messages[$session] == NULL)) {
345 /* if (!array_key_exists($session, $compose_messages)) { /* We can only do this in PHP >= 4.1 */
346 $composeMessage = new Message();
347 $rfc822_header = new Rfc822Header();
348 $composeMessage->rfc822_header = $rfc822_header;
349 $composeMessage->reply_rfc822_header = '';
350 $compose_messages[$session] = $composeMessage;
351
352 sqsession_register($compose_messages,'compose_messages');
353 } else {
354 $composeMessage=$compose_messages[$session];
355 }
356
357 if (!isset($mailbox) || $mailbox == '' || ($mailbox == 'None')) {
358 $mailbox = 'INBOX';
359 }
360
361 if ($draft) {
362 /*
363 * Set $default_charset to correspond with the user's selection
364 * of language interface.
365 */
366 set_my_charset();
367 $composeMessage=$compose_messages[$session];
368 if (! deliverMessage($composeMessage, true)) {
369 showInputForm($session);
370 exit();
371 } else {
372 unset($compose_messages[$session]);
373 $draft_message = _("Draft Email Saved");
374 /* If this is a resumed draft, then delete the original */
375 if(isset($delete_draft)) {
376 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, false);
377 sqimap_mailbox_select($imap_stream, $draft_folder);
378 // force bypass_trash=true because message should be saved when deliverMessage() returns true.
379 // in current implementation of sqimap_msgs_list_flag() single message id can
380 // be submitted as string. docs state that it should be array.
381 sqimap_msgs_list_delete($imap_stream, $draft_folder, $delete_draft, true);
382 if ($auto_expunge) {
383 sqimap_mailbox_expunge($imap_stream, $draft_folder, true);
384 }
385 sqimap_logout($imap_stream);
386 }
387 if ($compose_new_win == '1') {
388 if ( !isset($pageheader_sent) || !$pageheader_sent ) {
389 Header("Location: $location/compose.php?saved_draft=yes&session=$composesession");
390 } else {
391 echo ' <br><br><center><a href="' . $location
392 . '/compose.php?saved_sent=yes&amp;session=' . $composesession . '">'
393 . _("Return") . '</a></center>';
394 }
395 exit();
396 } else {
397 if ( !isset($pageheader_sent) || !$pageheader_sent ) {
398 Header("Location: $location/right_main.php?mailbox=" . urlencode($draft_folder) .
399 "&startMessage=1&note=".urlencode($draft_message));
400 } else {
401 echo ' <br><br><center><a href="' . $location
402 . '/right_main.php?mailbox=' . urlencode($draft_folder)
403 . '&amp;startMessage=1&amp;note=' . urlencode($draft_message) .'">'
404 . _("Return") . '</a></center>';
405 }
406 exit();
407 }
408 }
409 }
410
411 if ($send) {
412 if (isset($_FILES['attachfile']) &&
413 $_FILES['attachfile']['tmp_name'] &&
414 $_FILES['attachfile']['tmp_name'] != 'none') {
415 $AttachFailure = saveAttachedFiles($session);
416 }
417 if (checkInput(false) && !isset($AttachFailure)) {
418 if ($mailbox == "All Folders") {
419 /* We entered compose via the search results page */
420 $mailbox="INBOX"; /* Send 'em to INBOX, that's safe enough */
421 }
422 $urlMailbox = urlencode (trim($mailbox));
423 if (! isset($passed_id)) {
424 $passed_id = 0;
425 }
426 /**
427 * Set $default_charset to correspond with the user's selection
428 * of language interface.
429 */
430 set_my_charset();
431 /**
432 * This is to change all newlines to \n
433 * We'll change them to \r\n later (in the sendMessage function)
434 */
435 $body = str_replace("\r\n", "\n", $body);
436 $body = str_replace("\r", "\n", $body);
437
438 /**
439 * Rewrap $body so that no line is bigger than $editor_size
440 */
441 $body = explode("\n", $body);
442 $newBody = '';
443 foreach ($body as $line) {
444 if( $line <> '-- ' ) {
445 $line = rtrim($line);
446 }
447 if (sq_strlen($line,$default_charset) <= $editor_size + 1) {
448 $newBody .= $line . "\n";
449 } else {
450 sqWordWrap($line, $editor_size,$default_charset);
451 $newBody .= $line . "\n";
452
453 }
454
455 }
456 $body = $newBody;
457
458 $composeMessage=$compose_messages[$session];
459
460 $Result = deliverMessage($composeMessage);
461 if (! $Result) {
462 showInputForm($session);
463 exit();
464 }
465 unset($compose_messages[$session]);
466 /* if it is resumed draft, delete draft message */
467 if ( isset($delete_draft)) {
468 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, false);
469 sqimap_mailbox_select($imap_stream, $draft_folder);
470 // bypass_trash=true because message should be saved when deliverMessage() returns true.
471 // in current implementation of sqimap_msgs_list_flag() single message id can
472 // be submitted as string. docs state that it should be array.
473 sqimap_msgs_list_delete($imap_stream, $draft_folder, $delete_draft, true);
474 if ($auto_expunge) {
475 sqimap_mailbox_expunge($imap_stream, $draft_folder, true);
476 }
477 sqimap_logout($imap_stream);
478 }
479 if ($compose_new_win == '1') {
480 if ( !isset($pageheader_sent) || !$pageheader_sent ) {
481 Header("Location: $location/compose.php?mail_sent=yes");
482 } else {
483 echo ' <br><br><center><a href="' . $location
484 . '/compose.php?mail_sent=yes">'
485 . _("Return") . '</a></center>';
486 }
487 exit();
488 } else {
489 if ( !isset($pageheader_sent) || !$pageheader_sent ) {
490 Header("Location: $location/right_main.php?mailbox=$urlMailbox".
491 "&startMessage=$startMessage&mail_sent=yes");
492 } else {
493 echo ' <br><br><center><a href="' . $location
494 . "/right_main.php?mailbox=$urlMailbox"
495 . "&amp;startMessage=$startMessage&amp;mail_sent=yes\">"
496 . _("Return") . '</a></center>';
497 }
498 exit();
499 }
500 } else {
501 if ($compose_new_win == '1') {
502 compose_Header($color, $mailbox);
503 }
504 else {
505 displayPageHeader($color, $mailbox);
506 }
507 if (isset($AttachFailure)) {
508 plain_error_message(_("Could not move/copy file. File not attached"),
509 $color);
510 }
511 checkInput(true);
512 showInputForm($session);
513 /* sqimap_logout($imapConnection); */
514 }
515 } elseif (isset($html_addr_search_done)) {
516 if ($compose_new_win == '1') {
517 compose_Header($color, $mailbox);
518 }
519 else {
520 displayPageHeader($color, $mailbox);
521 }
522
523 if (isset($send_to_search) && is_array($send_to_search)) {
524 foreach ($send_to_search as $k => $v) {
525 if (substr($k, 0, 1) == 'T') {
526 if ($send_to) {
527 $send_to .= ', ';
528 }
529 $send_to .= $v;
530 }
531 elseif (substr($k, 0, 1) == 'C') {
532 if ($send_to_cc) {
533 $send_to_cc .= ', ';
534 }
535 $send_to_cc .= $v;
536 }
537 elseif (substr($k, 0, 1) == 'B') {
538 if ($send_to_bcc) {
539 $send_to_bcc .= ', ';
540 }
541 $send_to_bcc .= $v;
542 }
543 }
544 }
545 showInputForm($session);
546 } elseif (isset($html_addr_search)) {
547 if (isset($_FILES['attachfile']) &&
548 $_FILES['attachfile']['tmp_name'] &&
549 $_FILES['attachfile']['tmp_name'] != 'none') {
550 if(saveAttachedFiles($session)) {
551 plain_error_message(_("Could not move/copy file. File not attached"), $color);
552 }
553 }
554 /*
555 * I am using an include so as to elminiate an extra unnecessary
556 * click. If you can think of a better way, please implement it.
557 */
558 include_once('./addrbook_search_html.php');
559 } elseif (isset($attach)) {
560 if (saveAttachedFiles($session)) {
561 plain_error_message(_("Could not move/copy file. File not attached"), $color);
562 }
563 if ($compose_new_win == '1') {
564 compose_Header($color, $mailbox);
565 } else {
566 displayPageHeader($color, $mailbox);
567 }
568 showInputForm($session);
569 }
570 elseif (isset($sigappend)) {
571 $signature = $idents[$identity]['signature'];
572
573 $body .= "\n\n".($prefix_sig==true? "-- \n":'').$signature;
574 if ($compose_new_win == '1') {
575 compose_Header($color, $mailbox);
576 } else {
577 displayPageHeader($color, $mailbox);
578 }
579 showInputForm($session);
580 } elseif (isset($do_delete)) {
581 if ($compose_new_win == '1') {
582 compose_Header($color, $mailbox);
583 } else {
584 displayPageHeader($color, $mailbox);
585 }
586
587 if (isset($delete) && is_array($delete)) {
588 $composeMessage = $compose_messages[$session];
589 foreach($delete as $index) {
590 $attached_file = $composeMessage->entities[$index]->att_local_name;
591 unlink ($attached_file);
592 unset ($composeMessage->entities[$index]);
593 }
594 $new_entities = array();
595 foreach ($composeMessage->entities as $entity) {
596 $new_entities[] = $entity;
597 }
598 $composeMessage->entities = $new_entities;
599 $compose_messages[$session] = $composeMessage;
600 sqsession_register($compose_messages, 'compose_messages');
601 }
602 showInputForm($session);
603 } else {
604 /*
605 * This handles the default case as well as the error case
606 * (they had the same code) --> if (isset($smtpErrors))
607 */
608
609 if ($compose_new_win == '1') {
610 compose_Header($color, $mailbox);
611 } else {
612 displayPageHeader($color, $mailbox);
613 }
614
615 $newmail = true;
616
617 if (!isset($passed_ent_id)) {
618 $passed_ent_id = '';
619 }
620 if (!isset($passed_id)) {
621 $passed_id = '';
622 }
623 if (!isset($mailbox)) {
624 $mailbox = '';
625 }
626 if (!isset($action)) {
627 $action = '';
628 }
629
630 $values = newMail($mailbox,$passed_id,$passed_ent_id, $action, $session);
631
632 /* in case the origin is not read_body.php */
633 if (isset($send_to)) {
634 $values['send_to'] = $send_to;
635 }
636 if (isset($send_to_cc)) {
637 $values['send_to_cc'] = $send_to_cc;
638 }
639 if (isset($send_to_bcc)) {
640 $values['send_to_bcc'] = $send_to_bcc;
641 }
642 if (isset($subject)) {
643 $values['subject'] = $subject;
644 }
645 showInputForm($session, $values);
646 }
647
648 exit();
649
650 /**************** Only function definitions go below *************/
651
652 function getforwardSubject($subject)
653 {
654 if ((substr(strtolower($subject), 0, 4) != 'fwd:') &&
655 (substr(strtolower($subject), 0, 5) != '[fwd:') &&
656 (substr(strtolower($subject), 0, 6) != '[ fwd:')) {
657 $subject = '[Fwd: ' . $subject . ']';
658 }
659 return $subject;
660 }
661
662 /* This function is used when not sending or adding attachments */
663 function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $session='') {
664 global $editor_size, $default_use_priority, $body, $idents,
665 $use_signature, $data_dir, $username,
666 $username, $key, $imapServerAddress, $imapPort, $compose_messages,
667 $composeMessage, $body_quote;
668 global $languages, $squirrelmail_language, $default_charset;
669
670 /*
671 * Set $default_charset to correspond with the user's selection
672 * of language interface. $default_charset global is not correct,
673 * if message is composed in new window.
674 */
675 set_my_charset();
676
677 $send_to = $send_to_cc = $send_to_bcc = $subject = $identity = '';
678 $mailprio = 3;
679
680 if ($passed_id) {
681 $imapConnection = sqimap_login($username, $key, $imapServerAddress,
682 $imapPort, 0);
683
684 sqimap_mailbox_select($imapConnection, $mailbox);
685 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
686
687 $body = '';
688 if ($passed_ent_id) {
689 /* redefine the messsage in case of message/rfc822 */
690 $message = $message->getEntity($passed_ent_id);
691 /* message is an entity which contains the envelope and type0=message
692 * and type1=rfc822. The actual entities are childs from
693 * $message->entities[0]. That's where the encoding and is located
694 */
695
696 $entities = $message->entities[0]->findDisplayEntity
697 (array(), $alt_order = array('text/plain'));
698 if (!count($entities)) {
699 $entities = $message->entities[0]->findDisplayEntity
700 (array(), $alt_order = array('text/plain','html/plain'));
701 }
702 $orig_header = $message->rfc822_header; /* here is the envelope located */
703 /* redefine the message for picking up the attachments */
704 $message = $message->entities[0];
705
706 } else {
707 $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain'));
708 if (!count($entities)) {
709 $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain','html/plain'));
710 }
711 $orig_header = $message->rfc822_header;
712 }
713
714 $type0 = $message->type0;
715 $type1 = $message->type1;
716 foreach ($entities as $ent) {
717 $msg = $message->getEntity($ent);
718 $type0 = $msg->type0;
719 $type1 = $msg->type1;
720 $unencoded_bodypart = mime_fetch_body($imapConnection, $passed_id, $ent);
721 $body_part_entity = $message->getEntity($ent);
722 $bodypart = decodeBody($unencoded_bodypart,
723 $body_part_entity->header->encoding);
724 if ($type1 == 'html') {
725 $bodypart = str_replace("\n", ' ', $bodypart);
726 $bodypart = preg_replace(array('/<\/?p>/i','/<div><\/div>/i','/<br\s*(\/)*>/i','/<\/?div>/i'), "\n", $bodypart);
727 $bodypart = str_replace(array('&nbsp;','&gt;','&lt;'),array(' ','>','<'),$bodypart);
728 $bodypart = strip_tags($bodypart);
729 }
730 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
731 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode')) {
732 if (mb_detect_encoding($bodypart) != 'ASCII') {
733 $bodypart = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode', $bodypart);
734 }
735 }
736
737 // charset encoding in compose form stuff
738 if (isset($body_part_entity->header->parameters['charset'])) {
739 $actual = $body_part_entity->header->parameters['charset'];
740 } else {
741 $actual = 'us-ascii';
742 }
743
744 if ( $actual && is_conversion_safe($actual) && $actual != $default_charset){
745 $bodypart = charset_convert($actual,$bodypart,$default_charset,false);
746 }
747 // end of charset encoding in compose
748
749 $body .= $bodypart;
750 }
751 if ($default_use_priority) {
752 $mailprio = substr($orig_header->priority,0,1);
753 if (!$mailprio) {
754 $mailprio = 3;
755 }
756 } else {
757 $mailprio = '';
758 }
759 //ClearAttachments($session);
760
761 $identity = '';
762 $from_o = $orig_header->from;
763 if (is_array($from_o)) {
764 if (isset($from_o[0])) {
765 $from_o = $from_o[0];
766 }
767 }
768 if (is_object($from_o)) {
769 $orig_from = $from_o->getAddress();
770 } else {
771 $orig_from = '';
772 }
773
774 $identities = array();
775 if (count($idents) > 1) {
776 foreach($idents as $nr=>$data) {
777 $enc_from_name = '"'.$data['full_name'].'" <'. $data['email_address'].'>';
778 if($enc_from_name == $orig_from) {
779 $identity = $nr;
780 break;
781 }
782 $identities[] = $enc_from_name;
783 }
784
785 $identity_match = $orig_header->findAddress($identities);
786 if ($identity_match) {
787 $identity = $identity_match;
788 }
789 }
790
791 switch ($action) {
792 case ('draft'):
793 $use_signature = FALSE;
794 $composeMessage->rfc822_header = $orig_header;
795 $send_to = decodeHeader($orig_header->getAddr_s('to'),false,false,true);
796 $send_to_cc = decodeHeader($orig_header->getAddr_s('cc'),false,false,true);
797 $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'),false,false,true);
798 $send_from = $orig_header->getAddr_s('from');
799 $send_from_parts = new AddressStructure();
800 $send_from_parts = $orig_header->parseAddress($send_from);
801 $send_from_add = $send_from_parts->mailbox . '@' . $send_from_parts->host;
802 $identities = get_identities();
803 if (count($identities) > 0) {
804 foreach($identities as $iddata) {
805 if ($send_from_add == $iddata['email_address']) {
806 $identity = $iddata['index'];
807 break;
808 }
809 }
810 }
811 $subject = decodeHeader($orig_header->subject,false,false,true);
812 /* remember the references and in-reply-to headers in case of an reply */
813 $composeMessage->rfc822_header->more_headers['References'] = $orig_header->references;
814 $composeMessage->rfc822_header->more_headers['In-Reply-To'] = $orig_header->in_reply_to;
815 // rewrap the body to clean up quotations and line lengths
816 sqBodyWrap($body, $editor_size);
817 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
818 break;
819 case ('edit_as_new'):
820 $send_to = decodeHeader($orig_header->getAddr_s('to'),false,false,true);
821 $send_to_cc = decodeHeader($orig_header->getAddr_s('cc'),false,false,true);
822 $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'),false,false,true);
823 $subject = decodeHeader($orig_header->subject,false,false,true);
824 $mailprio = $orig_header->priority;
825 $orig_from = '';
826 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
827 // rewrap the body to clean up quotations and line lengths
828 sqBodyWrap($body, $editor_size);
829 break;
830 case ('forward'):
831 $send_to = '';
832 $subject = getforwardSubject(decodeHeader($orig_header->subject,false,false,true));
833 $body = getforwardHeader($orig_header) . $body;
834 // the logic for calling sqUnWordWrap here would be to allow the browser to wrap the lines
835 // forwarded message text should be as undisturbed as possible, so commenting out this call
836 // sqUnWordWrap($body);
837 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
838
839 //add a blank line after the forward headers
840 $body = "\n" . $body;
841 break;
842 case ('forward_as_attachment'):
843 $subject = getforwardSubject(decodeHeader($orig_header->subject,false,false,true));
844 $composeMessage = getMessage_RFC822_Attachment($message, $composeMessage, $passed_id, $passed_ent_id, $imapConnection);
845 $body = '';
846 break;
847 case ('reply_all'):
848 if(isset($orig_header->mail_followup_to) && $orig_header->mail_followup_to) {
849 $send_to = $orig_header->getAddr_s('mail_followup_to');
850 } else {
851 $send_to_cc = replyAllString($orig_header);
852 $send_to_cc = decodeHeader($send_to_cc,false,false,true);
853 }
854 case ('reply'):
855 // skip this if send_to was already set right above here
856 if(!$send_to) {
857 $send_to = $orig_header->reply_to;
858 if (is_array($send_to) && count($send_to)) {
859 $send_to = $orig_header->getAddr_s('reply_to');
860 } else if (is_object($send_to)) { /* unneccesarry, just for failsafe purpose */
861 $send_to = $orig_header->getAddr_s('reply_to');
862 } else {
863 $send_to = $orig_header->getAddr_s('from');
864 }
865 }
866 $send_to = decodeHeader($send_to,false,false,true);
867 $subject = decodeHeader($orig_header->subject,false,false,true);
868 $subject = str_replace('"', "'", $subject);
869 $subject = trim($subject);
870 if (substr(strtolower($subject), 0, 3) != 're:') {
871 $subject = 'Re: ' . $subject;
872 }
873 /* this corrects some wrapping/quoting problems on replies */
874 $rewrap_body = explode("\n", $body);
875 $from = (is_array($orig_header->from)) ? $orig_header->from[0] : $orig_header->from;
876 $body = '';
877 $strip_sigs = getPref($data_dir, $username, 'strip_sigs');
878 foreach ($rewrap_body as $line) {
879 if ($strip_sigs && substr($line,0,3) == '-- ') {
880 break;
881 }
882 if (preg_match("/^(>+)/", $line, $matches)) {
883 $gt = $matches[1];
884 $body .= $body_quote . str_replace("\n", "\n$body_quote$gt ", rtrim($line)) ."\n";
885 } else {
886 $body .= $body_quote . (!empty($body_quote) ? ' ' : '') . str_replace("\n", "\n$body_quote" . (!empty($body_quote) ? ' ' : ''), rtrim($line)) . "\n";
887 }
888 }
889
890 //rewrap the body to clean up quotations and line lengths
891 $body = sqBodyWrap ($body, $editor_size);
892
893 $body = getReplyCitation($from , $orig_header->date) . $body;
894 $composeMessage->reply_rfc822_header = $orig_header;
895
896 break;
897 default:
898 break;
899 }
900 $compose_messages[$session] = $composeMessage;
901 sqsession_register($compose_messages, 'compose_messages');
902 session_write_close();
903 sqimap_logout($imapConnection);
904 }
905 $ret = array( 'send_to' => $send_to,
906 'send_to_cc' => $send_to_cc,
907 'send_to_bcc' => $send_to_bcc,
908 'subject' => $subject,
909 'mailprio' => $mailprio,
910 'body' => $body,
911 'identity' => $identity );
912
913 return ($ret);
914 } /* function newMail() */
915
916 /**
917 * downloads attachments from original message, stores them in attachment directory and adds
918 * them to composed message.
919 * @param object $message
920 * @param object $composeMessage
921 * @param integer $passed_id
922 * @param mixed $entities
923 * @param mixed $imapConnection
924 * @return object
925 */
926 function getAttachments($message, &$composeMessage, $passed_id, $entities, $imapConnection) {
927 global $attachment_dir, $username, $data_dir, $squirrelmail_language, $languages;
928 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
929 if (!count($message->entities) ||
930 ($message->type0 == 'message' && $message->type1 == 'rfc822')) {
931 if ( !in_array($message->entity_id, $entities) && $message->entity_id) {
932 switch ($message->type0) {
933 case 'message':
934 if ($message->type1 == 'rfc822') {
935 $filename = $message->rfc822_header->subject;
936 if ($filename == "") {
937 $filename = "untitled-".$message->entity_id;
938 }
939 $filename .= '.msg';
940 } else {
941 $filename = $message->getFilename();
942 }
943 break;
944 default:
945 if (!$message->mime_header) { /* temporary hack */
946 $message->mime_header = $message->header;
947 }
948 $filename = $message->getFilename();
949 break;
950 }
951 $filename = str_replace('&#32;', ' ', decodeHeader($filename));
952 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
953 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode')) {
954 $filename = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode', $filename);
955 }
956 $localfilename = GenerateRandomString(32, '', 7);
957 $full_localfilename = "$hashed_attachment_dir/$localfilename";
958 while (file_exists($full_localfilename)) {
959 $localfilename = GenerateRandomString(32, '', 7);
960 $full_localfilename = "$hashed_attachment_dir/$localfilename";
961 }
962 $message->att_local_name = $full_localfilename;
963
964 $composeMessage->initAttachment($message->type0.'/'.$message->type1,$filename,
965 $full_localfilename);
966
967 /* Write Attachment to file */
968 $fp = fopen ("$hashed_attachment_dir/$localfilename", 'wb');
969 mime_print_body_lines ($imapConnection, $passed_id, $message->entity_id, $message->header->encoding, $fp);
970 fclose ($fp);
971 }
972 } else {
973 for ($i=0, $entCount=count($message->entities); $i<$entCount;$i++) {
974 $composeMessage=getAttachments($message->entities[$i], $composeMessage, $passed_id, $entities, $imapConnection);
975 }
976 }
977 return $composeMessage;
978 }
979
980 function getMessage_RFC822_Attachment($message, $composeMessage, $passed_id,
981 $passed_ent_id='', $imapConnection) {
982 global $attachment_dir, $username, $data_dir;
983 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
984 if (!$passed_ent_id) {
985 $body_a = sqimap_run_command($imapConnection,
986 'FETCH '.$passed_id.' RFC822',
987 TRUE, $response, $readmessage,
988 TRUE);
989 } else {
990 $body_a = sqimap_run_command($imapConnection,
991 'FETCH '.$passed_id.' BODY['.$passed_ent_id.']',
992 TRUE, $response, $readmessage, TRUE);
993 $message = $message->parent;
994 }
995 if ($response == 'OK') {
996 $subject = encodeHeader($message->rfc822_header->subject);
997 array_shift($body_a);
998 array_pop($body_a);
999 $body = implode('', $body_a) . "\r\n";
1000
1001 $localfilename = GenerateRandomString(32, 'FILE', 7);
1002 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1003
1004 $fp = fopen($full_localfilename, 'w');
1005 fwrite ($fp, $body);
1006 fclose($fp);
1007 $composeMessage->initAttachment('message/rfc822',$subject.'.msg',
1008 $full_localfilename);
1009 }
1010 return $composeMessage;
1011 }
1012
1013 function showInputForm ($session, $values=false) {
1014 global $send_to, $send_to_cc, $body, $startMessage, $action,
1015 $color, $use_signature, $signature, $prefix_sig,
1016 $editor_size, $editor_height, $subject, $newmail,
1017 $use_javascript_addr_book, $send_to_bcc, $passed_id, $mailbox,
1018 $from_htmladdr_search, $location_of_buttons, $attachment_dir,
1019 $username, $data_dir, $identity, $idents, $delete_draft,
1020 $mailprio, $compose_new_win, $saved_draft, $mail_sent, $sig_first,
1021 $username, $compose_messages, $composesession, $default_charset;
1022
1023 $composeMessage = $compose_messages[$session];
1024 if ($values) {
1025 $send_to = $values['send_to'];
1026 $send_to_cc = $values['send_to_cc'];
1027 $send_to_bcc = $values['send_to_bcc'];
1028 $subject = $values['subject'];
1029 $mailprio = $values['mailprio'];
1030 $body = $values['body'];
1031 $identity = (int) $values['identity'];
1032 } else {
1033 $send_to = decodeHeader($send_to, true, false);
1034 $send_to_cc = decodeHeader($send_to_cc, true, false);
1035 $send_to_bcc = decodeHeader($send_to_bcc, true, false);
1036 }
1037
1038 if ($use_javascript_addr_book) {
1039 echo "\n". '<script language="JavaScript">'."\n<!--\n" .
1040 'function open_abook() { ' . "\n" .
1041 ' var nwin = window.open("addrbook_popup.php","abookpopup",' .
1042 '"width=670,height=300,resizable=yes,scrollbars=yes");' . "\n" .
1043 ' if((!nwin.opener) && (document.windows != null))' . "\n" .
1044 ' nwin.opener = document.windows;' . "\n" .
1045 "}\n" .
1046 "// -->\n</script>\n\n";
1047 }
1048
1049 echo "\n" . '<form name="compose" action="compose.php" method="post" ' .
1050 'enctype="multipart/form-data"';
1051 do_hook('compose_form');
1052
1053 echo ">\n";
1054
1055 echo addHidden('startMessage', $startMessage);
1056
1057 if ($action == 'draft') {
1058 echo addHidden('delete_draft', $passed_id);
1059 }
1060 if (isset($delete_draft)) {
1061 echo addHidden('delete_draft', $delete_draft);
1062 }
1063 if (isset($session)) {
1064 echo addHidden('session', $session);
1065 }
1066
1067 if (isset($passed_id)) {
1068 echo addHidden('passed_id', $passed_id);
1069 }
1070
1071 if ($saved_draft == 'yes') {
1072 echo '<br /><center><b>'. _("Draft Saved").'</center></b>';
1073 }
1074 if ($mail_sent == 'yes') {
1075 echo '<br /><center><b>'. _("Your Message has been sent.").'</center></b>';
1076 }
1077 if ($compose_new_win == '1') {
1078 echo '<table align="center" bgcolor="'.$color[0].'" width="100%" border="0">'."\n" .
1079 ' <tr><td></td>'.html_tag( 'td', '', 'right' ).
1080 '<input type="button" name="Close" onclick="return self.close()" value="'.
1081 _("Close").'" /></td></tr>'."\n";
1082 } else {
1083 echo '<table align="center" cellspacing="0" border="0">' . "\n";
1084 }
1085 if ($location_of_buttons == 'top') {
1086 showComposeButtonRow();
1087 }
1088
1089 /* display select list for identities */
1090 if (count($idents) > 1) {
1091 $ident_list = array();
1092 foreach($idents as $id => $data) {
1093 $ident_list[$id] =
1094 $data['full_name'].' <'.$data['email_address'].'>';
1095 }
1096 echo ' <tr>' . "\n" .
1097 html_tag( 'td', '', 'right', $color[4], 'width="10%"' ) .
1098 _("From:") . '</td>' . "\n" .
1099 html_tag( 'td', '', 'left', $color[4], 'width="90%"' ) .
1100 ' '.
1101 addSelect('identity', $ident_list, $identity, TRUE);
1102
1103 echo ' </td>' . "\n" .
1104 ' </tr>' . "\n";
1105 }
1106
1107 echo ' <tr>' . "\n" .
1108 html_tag( 'td', '', 'right', $color[4], 'width="10%"' ) .
1109 _("To") . ':</td>' . "\n" .
1110 html_tag( 'td', '', 'left', $color[4], 'width="90%"' ) .
1111 addInput('send_to', $send_to, 60). '<br />' . "\n" .
1112 ' </td>' . "\n" .
1113 ' </tr>' . "\n" .
1114 ' <tr>' . "\n" .
1115 html_tag( 'td', '', 'right', $color[4] ) .
1116 _("Cc") . ':</td>' . "\n" .
1117 html_tag( 'td', '', 'left', $color[4] ) .
1118 addInput('send_to_cc', $send_to_cc, 60). '<br />' . "\n" .
1119 ' </td>' . "\n" .
1120 ' </tr>' . "\n" .
1121 ' <tr>' . "\n" .
1122 html_tag( 'td', '', 'right', $color[4] ) .
1123 _("Bcc") . ':</td>' . "\n" .
1124 html_tag( 'td', '', 'left', $color[4] ) .
1125 addInput('send_to_bcc', $send_to_bcc, 60).'<br />' . "\n" .
1126 ' </td>' . "\n" .
1127 ' </tr>' . "\n" .
1128 ' <tr>' . "\n" .
1129 html_tag( 'td', '', 'right', $color[4] ) .
1130 _("Subject") . ':</td>' . "\n" .
1131 html_tag( 'td', '', 'left', $color[4] ) . "\n";
1132 echo ' '.addInput('subject', $subject, 60).
1133 ' </td>' . "\n" .
1134 ' </tr>' . "\n\n";
1135
1136 if ($location_of_buttons == 'between') {
1137 showComposeButtonRow();
1138 }
1139
1140 /* why this distinction? */
1141 if ($compose_new_win == '1') {
1142 echo ' <tr>' . "\n" .
1143 ' <td bgcolor="' . $color[0] . '" colspan="2" align="center">' . "\n" .
1144 ' <textarea name="body" id="body" rows="' . (int)$editor_height .
1145 '" cols="' . (int)$editor_size . '" wrap="virtual">';
1146 }
1147 else {
1148 echo ' <tr>' . "\n" .
1149 ' <td bgcolor="' . $color[4] . '" colspan="2">' . "\n" .
1150 ' &nbsp;&nbsp;<textarea name="body" id="body" rows="' . (int)$editor_height .
1151 '" cols="' . (int)$editor_size . '" wrap="virtual">';
1152 }
1153
1154 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
1155 $signature = $idents[$identity]['signature'];
1156
1157 if ($sig_first == '1') {
1158 /*
1159 * FIXME: test is specific to ja_JP translation implementation.
1160 * This test might apply incorrect conversion to other translations, but
1161 * use of 7bit iso-2022-jp charset in other translations might have other
1162 * issues too.
1163 */
1164 if ($default_charset == 'iso-2022-jp') {
1165 echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
1166 } else {
1167 echo "\n\n".($prefix_sig==true? "-- \n":'').decodeHeader($signature,false,false);
1168 }
1169 echo "\n\n".htmlspecialchars(decodeHeader($body,false,false));
1170 }
1171 else {
1172 echo "\n\n".htmlspecialchars(decodeHeader($body,false,false));
1173 // FIXME: test is specific to ja_JP translation implementation. See above comments.
1174 if ($default_charset == 'iso-2022-jp') {
1175 echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
1176 }else{
1177 echo "\n\n".($prefix_sig==true? "-- \n":'').decodeHeader($signature,false,false);
1178 }
1179 }
1180 } else {
1181 echo htmlspecialchars(decodeHeader($body,false,false));
1182 }
1183 echo '</textarea><br />' . "\n" .
1184 ' </td>' . "\n" .
1185 ' </tr>' . "\n";
1186
1187
1188 if ($location_of_buttons == 'bottom') {
1189 showComposeButtonRow();
1190 } else {
1191 echo ' <tr>' . "\n" .
1192 html_tag( 'td', '', 'right', '', 'colspan="2"' ) . "\n" .
1193 ' ' . addSubmit(_("Send"), 'send').
1194 ' &nbsp;&nbsp;&nbsp;&nbsp;<br /><br />' . "\n" .
1195 ' </td>' . "\n" .
1196 ' </tr>' . "\n";
1197 }
1198
1199 /* This code is for attachments */
1200 if ((bool) ini_get('file_uploads')) {
1201
1202 /* Calculate the max size for an uploaded file.
1203 * This is advisory for the user because we can't actually prevent
1204 * people to upload too large files. */
1205 $sizes = array();
1206 /* php.ini vars which influence the max for uploads */
1207 $configvars = array('post_max_size', 'memory_limit', 'upload_max_filesize');
1208 foreach($configvars as $var) {
1209 /* skip 0 or empty values, and -1 which means 'unlimited' */
1210 if( $size = getByteSize(ini_get($var)) ) {
1211 if ( $size != '-1' ) {
1212 $sizes[] = $size;
1213 }
1214 }
1215 }
1216
1217 if(count($sizes) > 0) {
1218 $maxsize = '(max.&nbsp;' . show_readable_size( min( $sizes ) ) . ')';
1219 echo addHidden('MAX_FILE_SIZE', min( $sizes ));
1220 } else {
1221 $maxsize = '';
1222 }
1223 echo ' <tr>' . "\n" .
1224 ' <td colspan="2">' . "\n" .
1225 ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.
1226 ' border="0" bgcolor="'.$color[9].'">' . "\n" .
1227 ' <tr>' . "\n" .
1228 ' <td>' . "\n" .
1229 ' <table width="100%" cellpadding="3" cellspacing="0" align="center"'.
1230 ' border="0">' . "\n" .
1231 ' <tr>' . "\n" .
1232 html_tag( 'td', '', 'right', '', 'valign="middle"' ) .
1233 _("Attach:") . '</td>' . "\n" .
1234 html_tag( 'td', '', 'left', '', 'valign="middle"' ) .
1235 ' <input name="attachfile" size="48" type="file" />' . "\n" .
1236 ' &nbsp;&nbsp;<input type="submit" name="attach"' .
1237 ' value="' . _("Add") .'" />' . "\n" .
1238 $maxsize .
1239 ' </td>' . "\n" .
1240 ' </tr>' . "\n";
1241
1242 $s_a = array();
1243 if ($composeMessage->entities) {
1244 foreach ($composeMessage->entities as $key => $attachment) {
1245 $attached_file = $attachment->att_local_name;
1246 if ($attachment->att_local_name || $attachment->body_part) {
1247 $attached_filename = decodeHeader($attachment->mime_header->getParameter('name'));
1248 $type = $attachment->mime_header->type0.'/'.
1249 $attachment->mime_header->type1;
1250
1251 $s_a[] = '<table bgcolor="'.$color[0].
1252 '" border="0"><tr><td>'.
1253 addCheckBox('delete[]', FALSE, $key).
1254 "</td><td>\n" . $attached_filename .
1255 '</td><td>-</td><td> ' . $type . '</td><td>('.
1256 show_readable_size( filesize( $attached_file ) ) . ')</td></tr></table>'."\n";
1257 }
1258 }
1259 }
1260 if (count($s_a)) {
1261 foreach ($s_a as $s) {
1262 echo '<tr>' . html_tag( 'td', '', 'left', $color[0], 'colspan="2"' ) . $s .'</td></tr>';
1263 }
1264 echo '<tr><td colspan="2"><input type="submit" name="do_delete" value="' .
1265 _("Delete selected attachments") . "\" />\n" .
1266 '</td></tr>';
1267 }
1268 echo ' </table>' . "\n" .
1269 ' </td>' . "\n" .
1270 ' </tr>' . "\n" .
1271 ' </table>' . "\n" .
1272 ' </td>' . "\n" .
1273 ' </tr>' . "\n";
1274 } // End of file_uploads if-block
1275 /* End of attachment code */
1276 echo '</table>' . "\n" .
1277 addHidden('username', $username).
1278 addHidden('smaction', $action).
1279 addHidden('mailbox', $mailbox);
1280 /*
1281 store the complete ComposeMessages array in a hidden input value
1282 so we can restore them in case of a session timeout.
1283 */
1284 sqgetGlobalVar('QUERY_STRING', $queryString, SQ_SERVER);
1285 echo addHidden('restoremessages', serialize($compose_messages)).
1286 addHidden('composesession', $composesession).
1287 addHidden('querystring', $queryString).
1288 "</form>\n";
1289 if (!(bool) ini_get('file_uploads')) {
1290 /* File uploads are off, so we didn't show that part of the form.
1291 To avoid bogus bug reports, tell the user why. */
1292 echo '<p style="text-align:center">'
1293 . _("Because PHP file uploads are turned off, you can not attach files to this message. Please see your system administrator for details.")
1294 . "</p>\r\n";
1295 }
1296
1297 do_hook('compose_bottom');
1298 echo '</body></html>' . "\n";
1299 }
1300
1301
1302 function showComposeButtonRow() {
1303 global $use_javascript_addr_book, $save_as_draft,
1304 $default_use_priority, $mailprio, $default_use_mdn,
1305 $request_mdn, $request_dr,
1306 $data_dir, $username;
1307
1308 echo ' <tr>' . "\n" .
1309 ' <td></td>' . "\n" .
1310 ' <td>' . "\n";
1311 if ($default_use_priority) {
1312 if(!isset($mailprio)) {
1313 $mailprio = '3';
1314 }
1315 echo ' ' . _("Priority") .
1316 addSelect('mailprio', array(
1317 '1' => _("High"),
1318 '3' => _("Normal"),
1319 '5' => _("Low") ), $mailprio, TRUE);
1320 }
1321 $mdn_user_support=getPref($data_dir, $username, 'mdn_user_support',$default_use_mdn);
1322 if ($default_use_mdn) {
1323 if ($mdn_user_support) {
1324 echo ' ' . _("Receipt") .': '.
1325 addCheckBox('request_mdn', $request_mdn == '1', '1'). _("On Read").
1326 addCheckBox('request_dr', $request_dr == '1', '1'). _("On Delivery");
1327 }
1328 }
1329
1330 echo ' </td>' . "\n" .
1331 ' </tr>' . "\n" .
1332 ' <tr>' . "\n" .
1333 ' <td></td>' . "\n" .
1334 ' <td>' . "\n" .
1335 ' <input type="submit" name="sigappend" value="' . _("Signature") . '" />' . "\n";
1336 if ($use_javascript_addr_book) {
1337 echo " <script language=\"JavaScript\"><!--\n document.write(\"".
1338 " <input type=button value=\\\""._("Addresses").
1339 "\\\" onclick=\\\"javascript:open_abook();\\\" />\");".
1340 " // --></script><noscript>\n".
1341 ' <input type="submit" name="html_addr_search" value="'.
1342 _("Addresses").'" />'.
1343 " </noscript>\n";
1344 } else {
1345 echo ' <input type="submit" name="html_addr_search" value="'.
1346 _("Addresses").'" />' . "\n";
1347 }
1348
1349 if ($save_as_draft) {
1350 echo ' <input type="submit" name ="draft" value="' . _("Save Draft") . "\" />\n";
1351 }
1352
1353 echo ' <input type="submit" name="send" value="'. _("Send") . '" />' . "\n";
1354 do_hook('compose_button_row');
1355
1356 echo ' </td>' . "\n" .
1357 ' </tr>' . "\n\n";
1358 }
1359
1360 function checkInput ($show) {
1361 /*
1362 * I implemented the $show variable because the error messages
1363 * were getting sent before the page header. So, I check once
1364 * using $show=false, and then when i'm ready to display the error
1365 * message, show=true
1366 */
1367 global $body, $send_to, $send_to_bcc, $subject, $color;
1368
1369 if ($send_to == '' && $send_to_bcc == '') {
1370 if ($show) {
1371 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
1372 }
1373 return false;
1374 }
1375 return true;
1376 } /* function checkInput() */
1377
1378
1379 /* True if FAILURE */
1380 function saveAttachedFiles($session) {
1381 global $_FILES, $attachment_dir, $attachments, $username,
1382 $data_dir, $compose_messages;
1383
1384 /* get out of here if no file was attached at all */
1385 if (! is_uploaded_file($_FILES['attachfile']['tmp_name']) ) {
1386 return true;
1387 }
1388
1389 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
1390 $localfilename = GenerateRandomString(32, '', 7);
1391 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1392 while (file_exists($full_localfilename)) {
1393 $localfilename = GenerateRandomString(32, '', 7);
1394 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1395 }
1396
1397 // FIXME: we SHOULD prefer move_uploaded_file over rename because
1398 // m_u_f works better with restricted PHP installs (safe_mode, open_basedir)
1399 if (!@rename($_FILES['attachfile']['tmp_name'], $full_localfilename)) {
1400 if (!@move_uploaded_file($_FILES['attachfile']['tmp_name'],$full_localfilename)) {
1401 return true;
1402 }
1403 }
1404 $message = $compose_messages[$session];
1405 $type = strtolower($_FILES['attachfile']['type']);
1406 $name = $_FILES['attachfile']['name'];
1407 $message->initAttachment($type, $name, $full_localfilename);
1408 $compose_messages[$session] = $message;
1409 sqsession_register($compose_messages , 'compose_messages');
1410 }
1411
1412 function ClearAttachments($composeMessage) {
1413 if ($composeMessage->att_local_name) {
1414 $attached_file = $composeMessage->att_local_name;
1415 if (file_exists($attached_file)) {
1416 unlink($attached_file);
1417 }
1418 }
1419 for ($i=0, $entCount=count($composeMessage->entities);$i< $entCount; ++$i) {
1420 ClearAttachments($composeMessage->entities[$i]);
1421 }
1422 }
1423
1424 /* parse values like 8M and 2k into bytes */
1425 function getByteSize($ini_size) {
1426
1427 if(!$ini_size) {
1428 return FALSE;
1429 }
1430
1431 $ini_size = trim($ini_size);
1432
1433 // if there's some kind of letter at the end of the string we need to multiply.
1434 if(!is_numeric(substr($ini_size, -1))) {
1435
1436 switch(strtoupper(substr($ini_size, -1))) {
1437 case 'G':
1438 $bytesize = 1073741824;
1439 break;
1440 case 'M':
1441 $bytesize = 1048576;
1442 break;
1443 case 'K':
1444 $bytesize = 1024;
1445 break;
1446 }
1447
1448 return ($bytesize * (int)substr($ini_size, 0, -1));
1449 }
1450
1451 return $ini_size;
1452 }
1453
1454
1455 /**
1456 * temporary function to make use of the deliver class.
1457 * In the future the responsable backend should be automaticly loaded
1458 * and conf.pl should show a list of available backends.
1459 * The message also should be constructed by the message class.
1460 */
1461 function deliverMessage($composeMessage, $draft=false) {
1462 global $send_to, $send_to_cc, $send_to_bcc, $mailprio, $subject, $body,
1463 $username, $popuser, $usernamedata, $identity, $idents, $data_dir,
1464 $request_mdn, $request_dr, $default_charset, $color, $useSendmail,
1465 $domain, $action, $default_move_to_sent, $move_to_sent;
1466 global $imapServerAddress, $imapPort, $sent_folder, $key;
1467
1468 $rfc822_header = $composeMessage->rfc822_header;
1469
1470 $abook = addressbook_init(false, true);
1471 $rfc822_header->to = $rfc822_header->parseAddress($send_to,true, array(), '', $domain, array(&$abook,'lookup'));
1472 $rfc822_header->cc = $rfc822_header->parseAddress($send_to_cc,true,array(), '',$domain, array(&$abook,'lookup'));
1473 $rfc822_header->bcc = $rfc822_header->parseAddress($send_to_bcc,true, array(), '',$domain, array(&$abook,'lookup'));
1474 $rfc822_header->priority = $mailprio;
1475 $rfc822_header->subject = $subject;
1476
1477 $special_encoding='';
1478 if (strtolower($default_charset) == 'iso-2022-jp') {
1479 if (mb_detect_encoding($body) == 'ASCII') {
1480 $special_encoding = '8bit';
1481 } else {
1482 $body = mb_convert_encoding($body, 'JIS');
1483 $special_encoding = '7bit';
1484 }
1485 }
1486 $composeMessage->setBody($body);
1487
1488 if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
1489 $popuser = $usernamedata[1];
1490 $domain = $usernamedata[2];
1491 unset($usernamedata);
1492 } else {
1493 $popuser = $username;
1494 }
1495 $reply_to = '';
1496 $from_mail = $idents[$identity]['email_address'];
1497 $full_name = $idents[$identity]['full_name'];
1498 $reply_to = $idents[$identity]['reply_to'];
1499 if (!$from_mail) {
1500 $from_mail = "$popuser@$domain";
1501 }
1502 $rfc822_header->from = $rfc822_header->parseAddress($from_mail,true);
1503 if ($full_name) {
1504 $from = $rfc822_header->from[0];
1505 if (!$from->host) $from->host = $domain;
1506 $full_name_encoded = encodeHeader($full_name);
1507 if ($full_name_encoded != $full_name) {
1508 $from_addr = $full_name_encoded .' <'.$from->mailbox.'@'.$from->host.'>';
1509 } else {
1510 $from_addr = '"'.$full_name .'" <'.$from->mailbox.'@'.$from->host.'>';
1511 }
1512 $rfc822_header->from = $rfc822_header->parseAddress($from_addr,true);
1513 }
1514 if ($reply_to) {
1515 $rfc822_header->reply_to = $rfc822_header->parseAddress($reply_to,true);
1516 }
1517 /* Receipt: On Read */
1518 if (isset($request_mdn) && $request_mdn) {
1519 $rfc822_header->dnt = $rfc822_header->parseAddress($from_mail,true);
1520 }
1521 /* Receipt: On Delivery */
1522 if (isset($request_dr) && $request_dr) {
1523 $rfc822_header->more_headers['Return-Receipt-To'] = $from_mail;
1524 }
1525 /* multipart messages */
1526 if (count($composeMessage->entities)) {
1527 $message_body = new Message();
1528 $message_body->body_part = $composeMessage->body_part;
1529 $composeMessage->body_part = '';
1530 $mime_header = new MessageHeader;
1531 $mime_header->type0 = 'text';
1532 $mime_header->type1 = 'plain';
1533 if ($special_encoding) {
1534 $mime_header->encoding = $special_encoding;
1535 } else {
1536 $mime_header->encoding = '8bit';
1537 }
1538 if ($default_charset) {
1539 $mime_header->parameters['charset'] = $default_charset;
1540 }
1541 $message_body->mime_header = $mime_header;
1542 array_unshift($composeMessage->entities, $message_body);
1543 $content_type = new ContentType('multipart/mixed');
1544 } else {
1545 $content_type = new ContentType('text/plain');
1546 if ($special_encoding) {
1547 $rfc822_header->encoding = $special_encoding;
1548 } else {
1549 $rfc822_header->encoding = '8bit';
1550 }
1551 if ($default_charset) {
1552 $content_type->properties['charset']=$default_charset;
1553 }
1554 }
1555
1556 $rfc822_header->content_type = $content_type;
1557 $composeMessage->rfc822_header = $rfc822_header;
1558
1559 /* Here you can modify the message structure just before we hand
1560 it over to deliver */
1561 $hookReturn = do_hook('compose_send', $composeMessage);
1562 /* Get any changes made by plugins to $composeMessage. */
1563 if ( is_object($hookReturn[1]) ) {
1564 $composeMessage = $hookReturn[1];
1565 }
1566
1567 if (!$useSendmail && !$draft) {
1568 require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php');
1569 $deliver = new Deliver_SMTP();
1570 global $smtpServerAddress, $smtpPort, $pop_before_smtp;
1571
1572 $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false;
1573 get_smtp_user($user, $pass);
1574 $stream = $deliver->initStream($composeMessage,$domain,0,
1575 $smtpServerAddress, $smtpPort, $user, $pass, $authPop);
1576 } elseif (!$draft) {
1577 require_once(SM_PATH . 'class/deliver/Deliver_SendMail.class.php');
1578 global $sendmail_path;
1579 $deliver = new Deliver_SendMail();
1580 $stream = $deliver->initStream($composeMessage,$sendmail_path);
1581 } elseif ($draft) {
1582 global $draft_folder;
1583 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1584 $imap_stream = sqimap_login($username, $key, $imapServerAddress,
1585 $imapPort, 0);
1586 if (sqimap_mailbox_exists ($imap_stream, $draft_folder)) {
1587 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1588 $imap_deliver = new Deliver_IMAP();
1589 $length = $imap_deliver->mail($composeMessage);
1590 sqimap_append ($imap_stream, $draft_folder, $length);
1591 $imap_deliver->mail($composeMessage, $imap_stream);
1592 sqimap_append_done ($imap_stream, $draft_folder);
1593 sqimap_logout($imap_stream);
1594 unset ($imap_deliver);
1595 return $length;
1596 } else {
1597 $msg = '<br />'.sprintf(_("Error: Draft folder %s does not exist."), $draft_folder);
1598 plain_error_message($msg, $color);
1599 return false;
1600 }
1601 }
1602 $succes = false;
1603 if ($stream) {
1604 $length = $deliver->mail($composeMessage, $stream);
1605 $succes = $deliver->finalizeStream($stream);
1606 }
1607 if (!$succes) {
1608 $msg = $deliver->dlv_msg . '<br />' .
1609 _("Server replied:") . ' ' . $deliver->dlv_ret_nr . ' ' .
1610 $deliver->dlv_server_msg;
1611 plain_error_message($msg, $color);
1612 } else {
1613 unset ($deliver);
1614 $move_to_sent = getPref($data_dir,$username,'move_to_sent');
1615 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
1616
1617 /* Move to sent code */
1618 if (isset($default_move_to_sent) && ($default_move_to_sent != 0)) {
1619 $svr_allow_sent = true;
1620 } else {
1621 $svr_allow_sent = false;
1622 }
1623
1624 if (isset($sent_folder) && (($sent_folder != '') || ($sent_folder != 'none'))
1625 && sqimap_mailbox_exists( $imap_stream, $sent_folder)) {
1626 $fld_sent = true;
1627 } else {
1628 $fld_sent = false;
1629 }
1630
1631 if ((isset($move_to_sent) && ($move_to_sent != 0)) || (!isset($move_to_sent))) {
1632 $lcl_allow_sent = true;
1633 } else {
1634 $lcl_allow_sent = false;
1635 }
1636
1637 if (($fld_sent && $svr_allow_sent && !$lcl_allow_sent) || ($fld_sent && $lcl_allow_sent)) {
1638 global $passed_id, $mailbox, $action;
1639 if ($action == 'reply' || $action == 'reply_all') {
1640 $save_reply_with_orig=getPref($data_dir,$username,'save_reply_with_orig');
1641 if ($save_reply_with_orig) {
1642 $sent_folder = $mailbox;
1643 }
1644 }
1645 sqimap_append ($imap_stream, $sent_folder, $length);
1646 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1647 $imap_deliver = new Deliver_IMAP();
1648 $imap_deliver->mail($composeMessage, $imap_stream);
1649 sqimap_append_done ($imap_stream, $sent_folder);
1650 unset ($imap_deliver);
1651 }
1652 global $passed_id, $mailbox, $action;
1653 ClearAttachments($composeMessage);
1654 if ($action == 'reply' || $action == 'reply_all') {
1655 sqimap_mailbox_select ($imap_stream, $mailbox);
1656 sqimap_toggle_flag($imap_stream, array($passed_id), '\\Answered', true, false);
1657 }
1658 sqimap_logout($imap_stream);
1659 }
1660 return $succes;
1661 }
1662
1663 ?>