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