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