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