Don't auto-focus on compose form when user has already focused somewhere manually...
[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 if (checkForJavascript()) {
1024 $onfocus = ' onfocus="alreadyFocused=true;"';
1025 $onfocus_array = array('onfocus' => 'alreadyFocused=true;');
1026 }
1027 else {
1028 $onfocus = '';
1029 $onfocus_array = array();
1030 }
1031
1032 $composeMessage = $compose_messages[$session];
1033 if ($values) {
1034 $send_to = $values['send_to'];
1035 $send_to_cc = $values['send_to_cc'];
1036 $send_to_bcc = $values['send_to_bcc'];
1037 $subject = $values['subject'];
1038 $mailprio = $values['mailprio'];
1039 $body = $values['body'];
1040 $identity = (int) $values['identity'];
1041 } else {
1042 $send_to = decodeHeader($send_to, true, false);
1043 $send_to_cc = decodeHeader($send_to_cc, true, false);
1044 $send_to_bcc = decodeHeader($send_to_bcc, true, false);
1045 }
1046
1047 if ($use_javascript_addr_book) {
1048 echo "\n". '<script language="JavaScript">'."\n<!--\n" .
1049 'function open_abook() { ' . "\n" .
1050 ' var nwin = window.open("addrbook_popup.php","abookpopup",' .
1051 '"width=670,height=300,resizable=yes,scrollbars=yes");' . "\n" .
1052 ' if((!nwin.opener) && (document.windows != null))' . "\n" .
1053 ' nwin.opener = document.windows;' . "\n" .
1054 "}\n" .
1055 "// -->\n</script>\n\n";
1056 }
1057
1058 echo "\n" . '<form name="compose" action="compose.php" method="post" ' .
1059 'enctype="multipart/form-data"';
1060 do_hook('compose_form');
1061
1062 echo ">\n";
1063
1064 echo addHidden('startMessage', $startMessage);
1065
1066 if ($action == 'draft') {
1067 echo addHidden('delete_draft', $passed_id);
1068 }
1069 if (isset($delete_draft)) {
1070 echo addHidden('delete_draft', $delete_draft);
1071 }
1072 if (isset($session)) {
1073 echo addHidden('session', $session);
1074 }
1075
1076 if (isset($passed_id)) {
1077 echo addHidden('passed_id', $passed_id);
1078 }
1079
1080 if ($saved_draft == 'yes') {
1081 echo '<br /><center><b>'. _("Draft Saved").'</center></b>';
1082 }
1083 if ($mail_sent == 'yes') {
1084 echo '<br /><center><b>'. _("Your Message has been sent.").'</center></b>';
1085 }
1086 if ($compose_new_win == '1') {
1087 echo '<table align="center" bgcolor="'.$color[0].'" width="100%" border="0">'."\n" .
1088 ' <tr><td></td>'.html_tag( 'td', '', 'right' ).
1089 '<input type="button" name="Close" onclick="return self.close()" value="'.
1090 _("Close").'" /></td></tr>'."\n";
1091 } else {
1092 echo '<table align="center" cellspacing="0" border="0">' . "\n";
1093 }
1094 if ($location_of_buttons == 'top') {
1095 showComposeButtonRow();
1096 }
1097
1098 /* display select list for identities */
1099 if (count($idents) > 1) {
1100 $ident_list = array();
1101 foreach($idents as $id => $data) {
1102 $ident_list[$id] =
1103 $data['full_name'].' <'.$data['email_address'].'>';
1104 }
1105 echo ' <tr>' . "\n" .
1106 html_tag( 'td', '', 'right', $color[4], 'width="10%"' ) .
1107 _("From:") . '</td>' . "\n" .
1108 html_tag( 'td', '', 'left', $color[4], 'width="90%"' ) .
1109 ' '.
1110 addSelect('identity', $ident_list, $identity, TRUE);
1111
1112 echo ' </td>' . "\n" .
1113 ' </tr>' . "\n";
1114 }
1115
1116 echo ' <tr>' . "\n" .
1117 html_tag( 'td', '', 'right', $color[4], 'width="10%"' ) .
1118 _("To") . ':</td>' . "\n" .
1119 html_tag( 'td', '', 'left', $color[4], 'width="90%"' ) .
1120 addInput('send_to', $send_to, 60, 0, $onfocus_array). '<br />' . "\n" .
1121 ' </td>' . "\n" .
1122 ' </tr>' . "\n" .
1123 ' <tr>' . "\n" .
1124 html_tag( 'td', '', 'right', $color[4] ) .
1125 _("Cc") . ':</td>' . "\n" .
1126 html_tag( 'td', '', 'left', $color[4] ) .
1127 addInput('send_to_cc', $send_to_cc, 60, 0, $onfocus_array). '<br />' . "\n" .
1128 ' </td>' . "\n" .
1129 ' </tr>' . "\n" .
1130 ' <tr>' . "\n" .
1131 html_tag( 'td', '', 'right', $color[4] ) .
1132 _("Bcc") . ':</td>' . "\n" .
1133 html_tag( 'td', '', 'left', $color[4] ) .
1134 addInput('send_to_bcc', $send_to_bcc, 60, 0, $onfocus_array).'<br />' . "\n" .
1135 ' </td>' . "\n" .
1136 ' </tr>' . "\n" .
1137 ' <tr>' . "\n" .
1138 html_tag( 'td', '', 'right', $color[4] ) .
1139 _("Subject") . ':</td>' . "\n" .
1140 html_tag( 'td', '', 'left', $color[4] ) . "\n";
1141 echo ' '.addInput('subject', $subject, 60, 0, $onfocus_array).
1142 ' </td>' . "\n" .
1143 ' </tr>' . "\n\n";
1144
1145 if ($location_of_buttons == 'between') {
1146 showComposeButtonRow();
1147 }
1148
1149 /* why this distinction? */
1150 if ($compose_new_win == '1') {
1151 echo ' <tr>' . "\n" .
1152 ' <td bgcolor="' . $color[0] . '" colspan="2" align="center">' . "\n" .
1153 ' <textarea name="body" id="body" rows="' . (int)$editor_height .
1154 '" cols="' . (int)$editor_size . '" wrap="virtual"' . $onfocus . '>';
1155 }
1156 else {
1157 echo ' <tr>' . "\n" .
1158 ' <td bgcolor="' . $color[4] . '" colspan="2">' . "\n" .
1159 ' &nbsp;&nbsp;<textarea name="body" id="body" rows="' . (int)$editor_height .
1160 '" cols="' . (int)$editor_size . '" wrap="virtual"' . $onfocus . '>';
1161 }
1162
1163 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
1164 $signature = $idents[$identity]['signature'];
1165
1166 if ($sig_first == '1') {
1167 /*
1168 * FIXME: test is specific to ja_JP translation implementation.
1169 * This test might apply incorrect conversion to other translations, but
1170 * use of 7bit iso-2022-jp charset in other translations might have other
1171 * issues too.
1172 */
1173 if ($default_charset == 'iso-2022-jp') {
1174 echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
1175 } else {
1176 echo "\n\n".($prefix_sig==true? "-- \n":'').decodeHeader($signature,false,false);
1177 }
1178 echo "\n\n".htmlspecialchars(decodeHeader($body,false,false));
1179 }
1180 else {
1181 echo "\n\n".htmlspecialchars(decodeHeader($body,false,false));
1182 // FIXME: test is specific to ja_JP translation implementation. See above comments.
1183 if ($default_charset == 'iso-2022-jp') {
1184 echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
1185 }else{
1186 echo "\n\n".($prefix_sig==true? "-- \n":'').decodeHeader($signature,false,false);
1187 }
1188 }
1189 } else {
1190 echo htmlspecialchars(decodeHeader($body,false,false));
1191 }
1192 echo '</textarea><br />' . "\n" .
1193 ' </td>' . "\n" .
1194 ' </tr>' . "\n";
1195
1196
1197 if ($location_of_buttons == 'bottom') {
1198 showComposeButtonRow();
1199 } else {
1200 echo ' <tr>' . "\n" .
1201 html_tag( 'td', '', 'right', '', 'colspan="2"' ) . "\n" .
1202 ' ' . addSubmit(_("Send"), 'send').
1203 ' &nbsp;&nbsp;&nbsp;&nbsp;<br /><br />' . "\n" .
1204 ' </td>' . "\n" .
1205 ' </tr>' . "\n";
1206 }
1207
1208 /* This code is for attachments */
1209 if ((bool) ini_get('file_uploads')) {
1210
1211 /* Calculate the max size for an uploaded file.
1212 * This is advisory for the user because we can't actually prevent
1213 * people to upload too large files. */
1214 $sizes = array();
1215 /* php.ini vars which influence the max for uploads */
1216 $configvars = array('post_max_size', 'memory_limit', 'upload_max_filesize');
1217 foreach($configvars as $var) {
1218 /* skip 0 or empty values, and -1 which means 'unlimited' */
1219 if( $size = getByteSize(ini_get($var)) ) {
1220 if ( $size != '-1' ) {
1221 $sizes[] = $size;
1222 }
1223 }
1224 }
1225
1226 if(count($sizes) > 0) {
1227 $maxsize = '(max.&nbsp;' . show_readable_size( min( $sizes ) ) . ')';
1228 echo addHidden('MAX_FILE_SIZE', min( $sizes ));
1229 } else {
1230 $maxsize = '';
1231 }
1232 echo ' <tr>' . "\n" .
1233 ' <td colspan="2">' . "\n" .
1234 ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.
1235 ' border="0" bgcolor="'.$color[9].'">' . "\n" .
1236 ' <tr>' . "\n" .
1237 ' <td>' . "\n" .
1238 ' <table width="100%" cellpadding="3" cellspacing="0" align="center"'.
1239 ' border="0">' . "\n" .
1240 ' <tr>' . "\n" .
1241 html_tag( 'td', '', 'right', '', 'valign="middle"' ) .
1242 _("Attach:") . '</td>' . "\n" .
1243 html_tag( 'td', '', 'left', '', 'valign="middle"' ) .
1244 ' <input name="attachfile" size="48" type="file" />' . "\n" .
1245 ' &nbsp;&nbsp;<input type="submit" name="attach"' .
1246 ' value="' . _("Add") .'" />' . "\n" .
1247 $maxsize .
1248 ' </td>' . "\n" .
1249 ' </tr>' . "\n";
1250
1251 $s_a = array();
1252 if ($composeMessage->entities) {
1253 foreach ($composeMessage->entities as $key => $attachment) {
1254 $attached_file = $attachment->att_local_name;
1255 if ($attachment->att_local_name || $attachment->body_part) {
1256 $attached_filename = decodeHeader($attachment->mime_header->getParameter('name'));
1257 $type = $attachment->mime_header->type0.'/'.
1258 $attachment->mime_header->type1;
1259
1260 $s_a[] = '<table bgcolor="'.$color[0].
1261 '" border="0"><tr><td>'.
1262 addCheckBox('delete[]', FALSE, $key).
1263 "</td><td>\n" . $attached_filename .
1264 '</td><td>-</td><td> ' . $type . '</td><td>('.
1265 show_readable_size( filesize( $attached_file ) ) . ')</td></tr></table>'."\n";
1266 }
1267 }
1268 }
1269 if (count($s_a)) {
1270 foreach ($s_a as $s) {
1271 echo '<tr>' . html_tag( 'td', '', 'left', $color[0], 'colspan="2"' ) . $s .'</td></tr>';
1272 }
1273 echo '<tr><td colspan="2"><input type="submit" name="do_delete" value="' .
1274 _("Delete selected attachments") . "\" />\n" .
1275 '</td></tr>';
1276 }
1277 echo ' </table>' . "\n" .
1278 ' </td>' . "\n" .
1279 ' </tr>' . "\n" .
1280 ' </table>' . "\n" .
1281 ' </td>' . "\n" .
1282 ' </tr>' . "\n";
1283 } // End of file_uploads if-block
1284 /* End of attachment code */
1285 echo '</table>' . "\n" .
1286 addHidden('username', $username).
1287 addHidden('smaction', $action).
1288 addHidden('mailbox', $mailbox);
1289 /*
1290 store the complete ComposeMessages array in a hidden input value
1291 so we can restore them in case of a session timeout.
1292 */
1293 sqgetGlobalVar('QUERY_STRING', $queryString, SQ_SERVER);
1294 echo addHidden('restoremessages', serialize($compose_messages)).
1295 addHidden('composesession', $composesession).
1296 addHidden('querystring', $queryString).
1297 "</form>\n";
1298 if (!(bool) ini_get('file_uploads')) {
1299 /* File uploads are off, so we didn't show that part of the form.
1300 To avoid bogus bug reports, tell the user why. */
1301 echo '<p style="text-align:center">'
1302 . _("Because PHP file uploads are turned off, you can not attach files to this message. Please see your system administrator for details.")
1303 . "</p>\r\n";
1304 }
1305
1306 do_hook('compose_bottom');
1307 echo '</body></html>' . "\n";
1308 }
1309
1310
1311 function showComposeButtonRow() {
1312 global $use_javascript_addr_book, $save_as_draft,
1313 $default_use_priority, $mailprio, $default_use_mdn,
1314 $request_mdn, $request_dr,
1315 $data_dir, $username;
1316
1317 echo ' <tr>' . "\n" .
1318 ' <td></td>' . "\n" .
1319 ' <td>' . "\n";
1320 if ($default_use_priority) {
1321 if(!isset($mailprio)) {
1322 $mailprio = '3';
1323 }
1324 echo ' ' . _("Priority") .
1325 addSelect('mailprio', array(
1326 '1' => _("High"),
1327 '3' => _("Normal"),
1328 '5' => _("Low") ), $mailprio, TRUE);
1329 }
1330 $mdn_user_support=getPref($data_dir, $username, 'mdn_user_support',$default_use_mdn);
1331 if ($default_use_mdn) {
1332 if ($mdn_user_support) {
1333 echo ' ' . _("Receipt") .': '.
1334 addCheckBox('request_mdn', $request_mdn == '1', '1'). _("On Read").
1335 addCheckBox('request_dr', $request_dr == '1', '1'). _("On Delivery");
1336 }
1337 }
1338
1339 echo ' </td>' . "\n" .
1340 ' </tr>' . "\n" .
1341 ' <tr>' . "\n" .
1342 ' <td></td>' . "\n" .
1343 ' <td>' . "\n" .
1344 ' <input type="submit" name="sigappend" value="' . _("Signature") . '" />' . "\n";
1345 if ($use_javascript_addr_book) {
1346 echo " <script language=\"JavaScript\"><!--\n document.write(\"".
1347 " <input type=button value=\\\""._("Addresses").
1348 "\\\" onclick=\\\"javascript:open_abook();\\\" />\");".
1349 " // --></script><noscript>\n".
1350 ' <input type="submit" name="html_addr_search" value="'.
1351 _("Addresses").'" />'.
1352 " </noscript>\n";
1353 } else {
1354 echo ' <input type="submit" name="html_addr_search" value="'.
1355 _("Addresses").'" />' . "\n";
1356 }
1357
1358 if ($save_as_draft) {
1359 echo ' <input type="submit" name ="draft" value="' . _("Save Draft") . "\" />\n";
1360 }
1361
1362 echo ' <input type="submit" name="send" value="'. _("Send") . '" />' . "\n";
1363 do_hook('compose_button_row');
1364
1365 echo ' </td>' . "\n" .
1366 ' </tr>' . "\n\n";
1367 }
1368
1369 function checkInput ($show) {
1370 /*
1371 * I implemented the $show variable because the error messages
1372 * were getting sent before the page header. So, I check once
1373 * using $show=false, and then when i'm ready to display the error
1374 * message, show=true
1375 */
1376 global $body, $send_to, $send_to_bcc, $subject, $color;
1377
1378 if ($send_to == '' && $send_to_bcc == '') {
1379 if ($show) {
1380 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
1381 }
1382 return false;
1383 }
1384 return true;
1385 } /* function checkInput() */
1386
1387
1388 /* True if FAILURE */
1389 function saveAttachedFiles($session) {
1390 global $_FILES, $attachment_dir, $attachments, $username,
1391 $data_dir, $compose_messages;
1392
1393 /* get out of here if no file was attached at all */
1394 if (! is_uploaded_file($_FILES['attachfile']['tmp_name']) ) {
1395 return true;
1396 }
1397
1398 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
1399 $localfilename = GenerateRandomString(32, '', 7);
1400 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1401 while (file_exists($full_localfilename)) {
1402 $localfilename = GenerateRandomString(32, '', 7);
1403 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1404 }
1405
1406 // FIXME: we SHOULD prefer move_uploaded_file over rename because
1407 // m_u_f works better with restricted PHP installs (safe_mode, open_basedir)
1408 if (!@rename($_FILES['attachfile']['tmp_name'], $full_localfilename)) {
1409 if (!@move_uploaded_file($_FILES['attachfile']['tmp_name'],$full_localfilename)) {
1410 return true;
1411 }
1412 }
1413 $message = $compose_messages[$session];
1414 $type = strtolower($_FILES['attachfile']['type']);
1415 $name = $_FILES['attachfile']['name'];
1416 $message->initAttachment($type, $name, $full_localfilename);
1417 $compose_messages[$session] = $message;
1418 sqsession_register($compose_messages , 'compose_messages');
1419 }
1420
1421 function ClearAttachments($composeMessage) {
1422 if ($composeMessage->att_local_name) {
1423 $attached_file = $composeMessage->att_local_name;
1424 if (file_exists($attached_file)) {
1425 unlink($attached_file);
1426 }
1427 }
1428 for ($i=0, $entCount=count($composeMessage->entities);$i< $entCount; ++$i) {
1429 ClearAttachments($composeMessage->entities[$i]);
1430 }
1431 }
1432
1433 /* parse values like 8M and 2k into bytes */
1434 function getByteSize($ini_size) {
1435
1436 if(!$ini_size) {
1437 return FALSE;
1438 }
1439
1440 $ini_size = trim($ini_size);
1441
1442 // if there's some kind of letter at the end of the string we need to multiply.
1443 if(!is_numeric(substr($ini_size, -1))) {
1444
1445 switch(strtoupper(substr($ini_size, -1))) {
1446 case 'G':
1447 $bytesize = 1073741824;
1448 break;
1449 case 'M':
1450 $bytesize = 1048576;
1451 break;
1452 case 'K':
1453 $bytesize = 1024;
1454 break;
1455 }
1456
1457 return ($bytesize * (int)substr($ini_size, 0, -1));
1458 }
1459
1460 return $ini_size;
1461 }
1462
1463
1464 /**
1465 * temporary function to make use of the deliver class.
1466 * In the future the responsable backend should be automaticly loaded
1467 * and conf.pl should show a list of available backends.
1468 * The message also should be constructed by the message class.
1469 */
1470 function deliverMessage($composeMessage, $draft=false) {
1471 global $send_to, $send_to_cc, $send_to_bcc, $mailprio, $subject, $body,
1472 $username, $popuser, $usernamedata, $identity, $idents, $data_dir,
1473 $request_mdn, $request_dr, $default_charset, $color, $useSendmail,
1474 $domain, $action, $default_move_to_sent, $move_to_sent;
1475 global $imapServerAddress, $imapPort, $sent_folder, $key;
1476
1477 $rfc822_header = $composeMessage->rfc822_header;
1478
1479 $abook = addressbook_init(false, true);
1480 $rfc822_header->to = $rfc822_header->parseAddress($send_to,true, array(), '', $domain, array(&$abook,'lookup'));
1481 $rfc822_header->cc = $rfc822_header->parseAddress($send_to_cc,true,array(), '',$domain, array(&$abook,'lookup'));
1482 $rfc822_header->bcc = $rfc822_header->parseAddress($send_to_bcc,true, array(), '',$domain, array(&$abook,'lookup'));
1483 $rfc822_header->priority = $mailprio;
1484 $rfc822_header->subject = $subject;
1485
1486 $special_encoding='';
1487 if (strtolower($default_charset) == 'iso-2022-jp') {
1488 if (mb_detect_encoding($body) == 'ASCII') {
1489 $special_encoding = '8bit';
1490 } else {
1491 $body = mb_convert_encoding($body, 'JIS');
1492 $special_encoding = '7bit';
1493 }
1494 }
1495 $composeMessage->setBody($body);
1496
1497 if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
1498 $popuser = $usernamedata[1];
1499 $domain = $usernamedata[2];
1500 unset($usernamedata);
1501 } else {
1502 $popuser = $username;
1503 }
1504 $reply_to = '';
1505 $from_mail = $idents[$identity]['email_address'];
1506 $full_name = $idents[$identity]['full_name'];
1507 $reply_to = $idents[$identity]['reply_to'];
1508 if (!$from_mail) {
1509 $from_mail = "$popuser@$domain";
1510 }
1511 $rfc822_header->from = $rfc822_header->parseAddress($from_mail,true);
1512 if ($full_name) {
1513 $from = $rfc822_header->from[0];
1514 if (!$from->host) $from->host = $domain;
1515 $full_name_encoded = encodeHeader($full_name);
1516 if ($full_name_encoded != $full_name) {
1517 $from_addr = $full_name_encoded .' <'.$from->mailbox.'@'.$from->host.'>';
1518 } else {
1519 $from_addr = '"'.$full_name .'" <'.$from->mailbox.'@'.$from->host.'>';
1520 }
1521 $rfc822_header->from = $rfc822_header->parseAddress($from_addr,true);
1522 }
1523 if ($reply_to) {
1524 $rfc822_header->reply_to = $rfc822_header->parseAddress($reply_to,true);
1525 }
1526 /* Receipt: On Read */
1527 if (isset($request_mdn) && $request_mdn) {
1528 $rfc822_header->dnt = $rfc822_header->parseAddress($from_mail,true);
1529 }
1530 /* Receipt: On Delivery */
1531 if (isset($request_dr) && $request_dr) {
1532 $rfc822_header->more_headers['Return-Receipt-To'] = $from_mail;
1533 }
1534 /* multipart messages */
1535 if (count($composeMessage->entities)) {
1536 $message_body = new Message();
1537 $message_body->body_part = $composeMessage->body_part;
1538 $composeMessage->body_part = '';
1539 $mime_header = new MessageHeader;
1540 $mime_header->type0 = 'text';
1541 $mime_header->type1 = 'plain';
1542 if ($special_encoding) {
1543 $mime_header->encoding = $special_encoding;
1544 } else {
1545 $mime_header->encoding = '8bit';
1546 }
1547 if ($default_charset) {
1548 $mime_header->parameters['charset'] = $default_charset;
1549 }
1550 $message_body->mime_header = $mime_header;
1551 array_unshift($composeMessage->entities, $message_body);
1552 $content_type = new ContentType('multipart/mixed');
1553 } else {
1554 $content_type = new ContentType('text/plain');
1555 if ($special_encoding) {
1556 $rfc822_header->encoding = $special_encoding;
1557 } else {
1558 $rfc822_header->encoding = '8bit';
1559 }
1560 if ($default_charset) {
1561 $content_type->properties['charset']=$default_charset;
1562 }
1563 }
1564
1565 $rfc822_header->content_type = $content_type;
1566 $composeMessage->rfc822_header = $rfc822_header;
1567
1568 /* Here you can modify the message structure just before we hand
1569 it over to deliver */
1570 $hookReturn = do_hook('compose_send', $composeMessage);
1571 /* Get any changes made by plugins to $composeMessage. */
1572 if ( is_object($hookReturn[1]) ) {
1573 $composeMessage = $hookReturn[1];
1574 }
1575
1576 if (!$useSendmail && !$draft) {
1577 require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php');
1578 $deliver = new Deliver_SMTP();
1579 global $smtpServerAddress, $smtpPort, $pop_before_smtp;
1580
1581 $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false;
1582 get_smtp_user($user, $pass);
1583 $stream = $deliver->initStream($composeMessage,$domain,0,
1584 $smtpServerAddress, $smtpPort, $user, $pass, $authPop);
1585 } elseif (!$draft) {
1586 require_once(SM_PATH . 'class/deliver/Deliver_SendMail.class.php');
1587 global $sendmail_path;
1588 $deliver = new Deliver_SendMail();
1589 $stream = $deliver->initStream($composeMessage,$sendmail_path);
1590 } elseif ($draft) {
1591 global $draft_folder;
1592 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1593 $imap_stream = sqimap_login($username, $key, $imapServerAddress,
1594 $imapPort, 0);
1595 if (sqimap_mailbox_exists ($imap_stream, $draft_folder)) {
1596 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1597 $imap_deliver = new Deliver_IMAP();
1598 $length = $imap_deliver->mail($composeMessage);
1599 sqimap_append ($imap_stream, $draft_folder, $length);
1600 $imap_deliver->mail($composeMessage, $imap_stream);
1601 sqimap_append_done ($imap_stream, $draft_folder);
1602 sqimap_logout($imap_stream);
1603 unset ($imap_deliver);
1604 return $length;
1605 } else {
1606 $msg = '<br />'.sprintf(_("Error: Draft folder %s does not exist."), $draft_folder);
1607 plain_error_message($msg, $color);
1608 return false;
1609 }
1610 }
1611 $succes = false;
1612 if ($stream) {
1613 $length = $deliver->mail($composeMessage, $stream);
1614 $succes = $deliver->finalizeStream($stream);
1615 }
1616 if (!$succes) {
1617 $msg = $deliver->dlv_msg . '<br />' .
1618 _("Server replied:") . ' ' . $deliver->dlv_ret_nr . ' ' .
1619 $deliver->dlv_server_msg;
1620 plain_error_message($msg, $color);
1621 } else {
1622 unset ($deliver);
1623 $move_to_sent = getPref($data_dir,$username,'move_to_sent');
1624 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
1625
1626 /* Move to sent code */
1627 if (isset($default_move_to_sent) && ($default_move_to_sent != 0)) {
1628 $svr_allow_sent = true;
1629 } else {
1630 $svr_allow_sent = false;
1631 }
1632
1633 if (isset($sent_folder) && (($sent_folder != '') || ($sent_folder != 'none'))
1634 && sqimap_mailbox_exists( $imap_stream, $sent_folder)) {
1635 $fld_sent = true;
1636 } else {
1637 $fld_sent = false;
1638 }
1639
1640 if ((isset($move_to_sent) && ($move_to_sent != 0)) || (!isset($move_to_sent))) {
1641 $lcl_allow_sent = true;
1642 } else {
1643 $lcl_allow_sent = false;
1644 }
1645
1646 if (($fld_sent && $svr_allow_sent && !$lcl_allow_sent) || ($fld_sent && $lcl_allow_sent)) {
1647 global $passed_id, $mailbox, $action;
1648 if ($action == 'reply' || $action == 'reply_all') {
1649 $save_reply_with_orig=getPref($data_dir,$username,'save_reply_with_orig');
1650 if ($save_reply_with_orig) {
1651 $sent_folder = $mailbox;
1652 }
1653 }
1654 sqimap_append ($imap_stream, $sent_folder, $length);
1655 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1656 $imap_deliver = new Deliver_IMAP();
1657 $imap_deliver->mail($composeMessage, $imap_stream);
1658 sqimap_append_done ($imap_stream, $sent_folder);
1659 unset ($imap_deliver);
1660 }
1661 global $passed_id, $mailbox, $action;
1662 ClearAttachments($composeMessage);
1663 if ($action == 'reply' || $action == 'reply_all') {
1664 sqimap_mailbox_select ($imap_stream, $mailbox);
1665 sqimap_toggle_flag($imap_stream, array($passed_id), '\\Answered', true, false);
1666 }
1667 sqimap_logout($imap_stream);
1668 }
1669 return $succes;
1670 }
1671
1672 ?>