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