fix for getting the filenames
[squirrelmail.git] / src / compose.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * compose.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 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
35586184 20require_once('../src/validate.php');
21require_once('../functions/imap.php');
22require_once('../functions/date.php');
23require_once('../functions/mime.php');
24require_once('../functions/smtp.php');
35586184 25require_once('../functions/plugin.php');
41b94d65 26require_once('../functions/display_messages.php');
09044055 27/* --------------------- Specific Functions ------------------------------ */
28
41b94d65 29function replyAllString($header) {
30 global $include_self_reply_all, $username, $data_dir;
31 $excl_arr = array();
32 /**
33 * 1) Remove the addresses we'll be sending the message 'to'
34 */
35 $url_replytoall_avoid_addrs = '';
36 if (isset($header->replyto)) {
37 $excl_ar = $header->getAddr_a('replyto');
38 }
39 /**
40 * 2) Remove our identities from the CC list (they still can be in the
41 * TO list) only if $include_self_reply_all is turned off
42 */
43 if (!$include_self_reply_all) {
44 $email_address = trim(getPref($data_dir, $username, 'email_address'));
45 $excl_ar[$email_address] = '';
46
47 $idents = getPref($data_dir, $username, 'identities');
48 if ($idents != '' && $idents > 1) {
49 for ($i = 1; $i < $idents; $i ++) {
50 $cur_email_address = getPref($data_dir, $username,
51 'email_address' . $i);
52 $cur_email_address = strtolower($cur_email_address);
53 $excl_ar[$cur_email_address] = '';
54 }
55 }
56 }
57
58 /**
59 * 3) get the addresses.
60 */
61 $url_replytoall_ar = $header->getAddr_a(array('to','cc'), $excl_ar);
62
63 /**
64 * 4) generate the string.
65 */
66 $url_replytoallcc = '';
67 foreach( $url_replytoall_ar as $email => $personal) {
68 if ($personal) {
69 $url_replytoallcc .= ", \"$personal\" <$email>";
70 } else {
71 $url_replytoallcc .= ', '. $email;
72 }
73 }
74 $url_replytoallcc = substr($url_replytoallcc,2);
75 return $url_replytoallcc;
09044055 76}
77
41b94d65 78function getforwardHeader($orig_header) {
19c6f7a7 79 global $editor_size;
80
a45887d7 81 $display = array(
82 _("Subject") => strlen(_("Subject")),
83 _("From") => strlen(_("From")),
84 _("Date") => strlen(_("Date")),
85 _("To") => strlen(_("To")),
86 _("Cc") => strlen(_("Cc"))
87 );
88 $maxsize = max($display);
89 $indent = str_pad('',$maxsize+2);
90 foreach($display as $key => $val) {
91 $display[$key] = $key .': '. str_pad('', $maxsize - $val);
92 }
19c6f7a7 93 $bodyTop = str_pad(' '._("Original Message").' ',$editor_size -2,'-',STR_PAD_BOTH);
c4d02444 94 $bodyTop .= "\n". $display[_("Subject")] . decodeHeader($orig_header->subject) . "\n" .
95 $display[_("From")] . decodeHeader($orig_header->getAddr_s('from',"\n$indent")) . "\n" .
a45887d7 96 $display[_("Date")] . getLongDateString( $orig_header->date ). "\n" .
c4d02444 97 $display[_("To")] . decodeHeader($orig_header->getAddr_s('to',"\n$indent")) ."\n";
41b94d65 98 if ($orig_header->cc != array() && $orig_header->cc !='') {
c4d02444 99 $bodyTop .= $display[_("Cc")] . decodeHeader($orig_header->getAddr_s('cc',"\n$indent")) . "\n";
41b94d65 100 }
19c6f7a7 101 $bodyTop .= str_pad('', $editor_size -2 , '-');
41b94d65 102 $bodyTop .= "\n";
103 return $bodyTop;
104}
09044055 105/* ----------------------------------------------------------------------- */
106
44560457 107/*
108 * If the session is expired during a post this restores the compose session
109 * vars.
110 */
111//$session_expired = false;
112if (session_is_registered('session_expired_post')) {
113 global $session_expired_post, $session_expired;
114 /*
115 * extra check for username so we don't display previous post data from
116 * another user during this session.
117 */
118 if ($session_expired_post['username'] != $username) {
119 session_unregister('session_expired_post');
120 session_unregister('session_expired');
121 } else {
122 foreach ($session_expired_post as $postvar => $val) {
123 if (isset($val)) {
124 $$postvar = $val;
125 } else {
126 $$postvar = '';
127 }
128 }
129 if (isset($send)) {
130 unset($send);
131 }
132 $session_expired = true;
133 }
134 session_unregister('session_expired_post');
135 session_unregister('session_expired');
3f6b1b6f 136 if (!isset($mailbox)) {
137 $mailbox = '';
138 }
44560457 139 if ($compose_new_win == '1') {
140 compose_Header($color, $mailbox);
141 } else {
142 displayPageHeader($color, $mailbox);
143 }
144 showInputForm($session, false);
145 exit();
146}
147
48985d59 148if (!isset($attachments)) {
149 $attachments = array();
150 session_register('attachments');
151}
152
da95c4b6 153if (!isset($composesession)) {
154 $composesession = 0;
155 session_register('composesession');
156}
157
d7f8e6e6 158if (!isset($session) || (isset($newmessage) && $newmessage)) {
da95c4b6 159 $session = "$composesession" +1;
160 $composesession = $session;
d7f8e6e6 161}
da95c4b6 162
00793a25 163if (!isset($mailbox) || $mailbox == '' || ($mailbox == 'None')) {
164 $mailbox = 'INBOX';
165}
166
167if (isset($draft)) {
715225af 168 include_once ('../src/draft_actions.php');
3f6b1b6f 169 if (! isset($passed_id)) {
170 $passed_id = 0;
113e5e9d 171 }
7058a2a9 172 if (! isset($MDN)) {
173 $MDN = 'False';
113e5e9d 174 }
fa77d354 175 if (! isset($mailprio)) {
176 $mailprio = '';
177 }
3f6b1b6f 178 if (!saveMessageAsDraft($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $passed_id, $mailprio, $session)) {
da95c4b6 179 showInputForm($session);
00793a25 180 exit();
734f4ee6 181 } else {
00793a25 182 $draft_message = _("Draft Email Saved");
183 /* If this is a resumed draft, then delete the original */
184 if(isset($delete_draft)) {
7058a2a9 185 Header("Location: delete_message.php?mailbox=" . urlencode($draft_folder) .
fae72101 186 "&message=$delete_draft&sort=$sort&startMessage=1&saved_draft=yes");
00793a25 187 exit();
7058a2a9 188 }
9c3e6cd4 189 else {
190 if ($compose_new_win == '1') {
da95c4b6 191 Header("Location: compose.php?saved_draft=yes&session=$composesession");
9c3e6cd4 192 exit();
193 }
194 else {
fae72101 195 Header("Location: right_main.php?mailbox=$draft_folder&sort=$sort".
2017ebeb 196 "&startMessage=1&note=".urlencode($draft_message));
00793a25 197 exit();
9c3e6cd4 198 }
00793a25 199 }
200 }
201}
202
203if (isset($send)) {
204 if (isset($HTTP_POST_FILES['attachfile']) &&
205 $HTTP_POST_FILES['attachfile']['tmp_name'] &&
206 $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none') {
da95c4b6 207 $AttachFailure = saveAttachedFiles($session);
00793a25 208 }
209 if (checkInput(false) && !isset($AttachFailure)) {
210 $urlMailbox = urlencode (trim($mailbox));
3f6b1b6f 211 if (! isset($passed_id)) {
212 $passed_id = 0;
00793a25 213 }
214 /*
215 * Set $default_charset to correspond with the user's selection
7058a2a9 216 * of language interface.
00793a25 217 */
218 set_my_charset();
219
220 /*
221 * This is to change all newlines to \n
7058a2a9 222 * We'll change them to \r\n later (in the sendMessage function)
00793a25 223 */
224 $body = str_replace("\r\n", "\n", $body);
225 $body = str_replace("\r", "\n", $body);
226
227 /*
228 * Rewrap $body so that no line is bigger than $editor_size
229 * This should only really kick in the sqWordWrap function
f302d704 230 * if the browser doesn't support "VIRTUAL" as the wrap type.
00793a25 231 */
232 $body = explode("\n", $body);
233 $newBody = '';
234 foreach ($body as $line) {
235 if( $line <> '-- ' ) {
236 $line = rtrim($line);
237 }
238 if (strlen($line) <= $editor_size + 1) {
239 $newBody .= $line . "\n";
734f4ee6 240 } else {
e0858036 241 sqWordWrap($line, $editor_size);
242 $newBody .= $line . "\n";
00793a25 243 }
244 }
245 $body = $newBody;
246
e02775fe 247 do_hook('compose_send');
248
57257333 249 $MDN = False; // we are not sending a mdn response
00793a25 250 if (! isset($mailprio)) {
251 $Result = sendMessage($send_to, $send_to_cc, $send_to_bcc,
3f6b1b6f 252 $subject, $body, $passed_id, $MDN, '', $session);
734f4ee6 253 } else {
00793a25 254 $Result = sendMessage($send_to, $send_to_cc, $send_to_bcc,
3f6b1b6f 255 $subject, $body, $passed_id, $MDN, $mailprio, $session);
00793a25 256 }
257 if (! $Result) {
da95c4b6 258 showInputForm($session);
00793a25 259 exit();
260 }
261 if ( isset($delete_draft)) {
7058a2a9 262 Header("Location: delete_message.php?mailbox=" . urlencode( $draft_folder ).
fae72101 263 "&message=$delete_draft&sort=$sort&startMessage=1&mail_sent=yes");
00793a25 264 exit();
265 }
9c3e6cd4 266 if ($compose_new_win == '1') {
d7f8e6e6 267 Header("Location: compose.php?mail_sent=yes");
9c3e6cd4 268 }
269 else {
fae72101 270 Header("Location: right_main.php?mailbox=$urlMailbox&sort=$sort".
271 "&startMessage=1");
9c3e6cd4 272 }
734f4ee6 273 } else {
00793a25 274 /*
275 *$imapConnection = sqimap_login($username, $key, $imapServerAddress,
276 * $imapPort, 0);
277 */
9c3e6cd4 278 if ($compose_new_win == '1') {
279 compose_Header($color, $mailbox);
280 }
281 else {
282 displayPageHeader($color, $mailbox);
283 }
00793a25 284 if (isset($AttachFailure)) {
285 plain_error_message(_("Could not move/copy file. File not attached"),
286 $color);
287 }
00793a25 288 checkInput(true);
da95c4b6 289 showInputForm($session);
00793a25 290 /* sqimap_logout($imapConnection); */
291 }
e02775fe 292} elseif (isset($html_addr_search_done)) {
9c3e6cd4 293 if ($compose_new_win == '1') {
294 compose_Header($color, $mailbox);
295 }
296 else {
297 displayPageHeader($color, $mailbox);
298 }
00793a25 299
300 if (isset($send_to_search) && is_array($send_to_search)) {
301 foreach ($send_to_search as $k => $v) {
302 if (substr($k, 0, 1) == 'T') {
303 if ($send_to) {
304 $send_to .= ', ';
305 }
306 $send_to .= $v;
307 }
308 elseif (substr($k, 0, 1) == 'C') {
309 if ($send_to_cc) {
310 $send_to_cc .= ', ';
311 }
312 $send_to_cc .= $v;
313 }
314 elseif (substr($k, 0, 1) == 'B') {
315 if ($send_to_bcc) {
316 $send_to_bcc .= ', ';
317 }
318 $send_to_bcc .= $v;
319 }
320 }
321 }
da95c4b6 322 showInputForm($session);
e02775fe 323} elseif (isset($html_addr_search)) {
00793a25 324 if (isset($HTTP_POST_FILES['attachfile']) &&
325 $HTTP_POST_FILES['attachfile']['tmp_name'] &&
326 $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none') {
da95c4b6 327 if (saveAttachedFiles($session)) {
00793a25 328 plain_error_message(_("Could not move/copy file. File not attached"), $color);
329 }
330 }
331 /*
332 * I am using an include so as to elminiate an extra unnecessary
333 * click. If you can think of a better way, please implement it.
334 */
335 include_once('./addrbook_search_html.php');
e02775fe 336} elseif (isset($attach)) {
da95c4b6 337 if (saveAttachedFiles($session)) {
00793a25 338 plain_error_message(_("Could not move/copy file. File not attached"), $color);
339 }
9c3e6cd4 340 if ($compose_new_win == '1') {
341 compose_Header($color, $mailbox);
342 }
343 else {
344 displayPageHeader($color, $mailbox);
345 }
da95c4b6 346 showInputForm($session);
01265fba 347}
348elseif (isset($sigappend)) {
349 $idents = getPref($data_dir, $username, 'identities', 0);
350 if ($idents > 1) {
351 if ($identity == 'default') {
352 $no = 'g';
353 } else {
354 $no = $identity;
355 }
356 $signature = getSig($data_dir, $username, $no);
357 }
358 $body .= "\n\n".($prefix_sig==true? "-- \n":'').$signature;
359 if ($compose_new_win == '1') {
360 compose_Header($color, $mailbox);
361 } else {
362 displayPageHeader($color, $mailbox);
363 }
da95c4b6 364 showInputForm($session);
e02775fe 365} elseif (isset($do_delete)) {
9c3e6cd4 366 if ($compose_new_win == '1') {
367 compose_Header($color, $mailbox);
368 }
369 else {
370 displayPageHeader($color, $mailbox);
371 }
00793a25 372
373 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
374 if (isset($delete) && is_array($delete)) {
375 foreach($delete as $index) {
376 $attached_file = $hashed_attachment_dir . '/'
377 . $attachments[$index]['localfilename'];
da95c4b6 378 unlink ($attached_file);
379 unset ($attachments[$index]);
00793a25 380 }
3f6b1b6f 381 setPref($data_dir, $username, 'attachments', serialize($attachments));
00793a25 382 }
383
da95c4b6 384 showInputForm($session);
734f4ee6 385} else {
00793a25 386 /*
387 * This handles the default case as well as the error case
388 * (they had the same code) --> if (isset($smtpErrors))
389 */
44560457 390
391 if ($compose_new_win == '1') {
392 compose_Header($color, $mailbox);
393 } else {
394 displayPageHeader($color, $mailbox);
395 }
00793a25 396
397 $newmail = true;
398
41b94d65 399 if (!isset($passed_ent_id)) $passed_ent_id = '';
400 if (!isset($passed_id)) $passed_id = '';
401 if (!isset($mailbox)) $mailbox = '';
402 if (!isset($action)) $action = '';
403
44560457 404 $values = newMail($mailbox,$passed_id,$passed_ent_id, $action, $session);
b9928adc 405
406 /* in case the origin is not read_body.php */
407 if (isset($send_to)) {
408 $values['send_to'] = $send_to;
409 }
410 if (isset($send_to_cc)) {
44560457 411 $values['send_to_cc'] = $send_to_cc;
b9928adc 412 }
413 if (isset($send_to_bcc)) {
44560457 414 $values['send_to_bcc'] = $send_to_bcc;
b9928adc 415 }
41b94d65 416 showInputForm($session, $values);
00793a25 417}
418
419exit();
420
00793a25 421/**************** Only function definitions go below *************/
422
423
48985d59 424/* This function is used when not sending or adding attachments */
44560457 425function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $session='') {
41b94d65 426 global $editor_size, $default_use_priority,
44560457 427 $use_signature, $composesession, $data_dir, $username,
428 $username, $key, $imapServerAddress, $imapPort;
e7f1a81d 429
bdb92db3 430 $send_to = $send_to_cc = $send_to_bcc = $subject = $body = $identity = '';
431 $mailprio = 3;
44560457 432
41b94d65 433 if ($passed_id) {
44560457 434 $imapConnection = sqimap_login($username, $key, $imapServerAddress,
435 $imapPort, 0);
436
48985d59 437 sqimap_mailbox_select($imapConnection, $mailbox);
41b94d65 438 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
439 $body = '';
440 if ($passed_ent_id) {
441 /* redefine the messsage in case of message/rfc822 */
442 $message = $message->getEntity($passed_ent_id);
443 /* message is an entity which contains the envelope and type0=message
444 * and type1=rfc822. The actual entities are childs from
445 * $message->entities[0]. That's where the encoding and is located
446 */
447
448 $entities = $message->entities[0]->findDisplayEntity
449 (array(), $alt_order = array('text/plain'));
450 if (!count($entities)) {
451 $entities = $message->entities[0]->findDisplayEntity
452 (array(), $alt_order = array('text/plain','html/plain'));
453 }
a45887d7 454 $orig_header = $message->rfc822_header; /* here is the envelope located */
41b94d65 455 /* redefine the message for picking up the attachments */
456 $message = $message->entities[0];
457
458 } else {
459 $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain'));
460 if (!count($entities)) {
461 $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain','html/plain'));
462 }
a45887d7 463 $orig_header = $message->rfc822_header;
41b94d65 464 }
465 $encoding = $message->header->encoding;
466 $type0 = $message->type0;
467 $type1 = $message->type1;
41b94d65 468 foreach ($entities as $ent) {
c17daaba 469 $unencoded_bodypart = mime_fetch_body($imapConnection, $passed_id, $ent);
470 $body_part_entity = $message->getEntity($ent);
471 $bodypart = decodeBody($unencoded_bodypart,
472 $body_part_entity->header->encoding);
41b94d65 473 if ($type1 == 'html') {
474 $bodypart = strip_tags($bodypart);
475 }
476 $body .= $bodypart;
477 }
478 if ($default_use_priority) {
479 $mailprio = substr($orig_header->priority,0,1);
a45887d7 480 if (!$mailprio) {
481 $mailprio = 3;
482 }
41b94d65 483 } else {
484 $mailprio = '';
485 }
486 ClearAttachments($session);
bdb92db3 487
488 $identity = '';
489 $idents = getPref($data_dir, $username, 'identities');
a45887d7 490 $from_o = $orig_header->from;
bdb92db3 491 if (is_object($from_o)) {
492 $orig_from = $from_o->getAddress();
493 } else {
494 $orig_from = '';
495 }
496 if (!empty($idents) && $idents > 1) {
497 for ($i = 1; $i < $idents; $i++) {
498 $enc_from_name = '"'.
499 getPref($data_dir,
500 $username,
501 'full_name' . $i) .
502 '" <' . getPref($data_dir, $username,
503 'email_address' . $i) . '>';
504 if ($enc_from_name == $orig_from) {
505 $identity = $i;
506 break;
507 }
508 }
509 }
510
41b94d65 511 switch ($action) {
a45887d7 512 case ('draft'):
513 $use_signature = FALSE;
514 $send_to = $orig_header->getAddr_s('to');
515 $send_to_cc = $orig_header->getAddr_s('cc');
516 $send_to_bcc = $orig_header->getAddr_s('bcc');
517 $subject = $orig_header->subject;
518
519 $body_ary = explode("\n", $body);
520 $cnt = count($body_ary) ;
521 $body = '';
522 for ($i=0; $i < $cnt; $i++) {
523 if (!ereg("^[>\\s]*$", $body_ary[$i])) {
524 sqWordWrap($body_ary[$i], $editor_size );
525 $body .= $body_ary[$i] . "\n";
526 }
527 unset($body_ary[$i]);
528 }
529 sqUnWordWrap($body);
530 getAttachments($message, $session, $passed_id, $entities, $imapConnection);
531 break;
532 case ('edit_as_new'):
533 $send_to = $orig_header->getAddr_s('to');
534 $send_to_cc = $orig_header->getAddr_s('cc');
535 $send_to_bcc = $orig_header->getAddr_s('bcc');
536 $subject = $orig_header->subject;
537 $mailprio = $orig_header->priority;
538 $orig_from = '';
539 getAttachments($message, $session, $passed_id, $entities, $imapConnection);
540 sqUnWordWrap($body);
541 break;
542 case ('forward'):
543 $send_to = '';
544 $subject = $orig_header->subject;
545 if ((substr(strtolower($subject), 0, 4) != 'fwd:') &&
546 (substr(strtolower($subject), 0, 5) != '[fwd:') &&
547 (substr(strtolower($subject), 0, 6) != '[ fwd:')) {
548 $subject = '[Fwd: ' . $subject . ']';
549 }
550 $body = getforwardHeader($orig_header) . $body;
551 sqUnWordWrap($body);
a6ec592e 552 getAttachments($message, $session, $passed_id, $entities, $imapConnection);
553 break;
554 case ('forward_as_attachment'):
756406df 555 getMessage_RFC822_Attachment($message, $session, $passed_id, $passed_ent_id, $imapConnection);
a6ec592e 556 $body = '';
a45887d7 557 break;
558 case ('reply_all'):
559 $send_to_cc = replyAllString($orig_header);
560 case ('reply'):
561 $send_to = $orig_header->reply_to;
562 if (is_object($send_to)) {
563 $send_to = $send_to->getAddr_s('reply_to');
564 } else {
565 $send_to = $orig_header->getAddr_s('from');
566 }
567 $subject = $orig_header->subject;
568 $subject = str_replace('"', "'", $subject);
569 $subject = trim($subject);
570 if (substr(strtolower($subject), 0, 3) != 're:') {
571 $subject = 'Re: ' . $subject;
572 }
573 /* this corrects some wrapping/quoting problems on replies */
574 $rewrap_body = explode("\n", $body);
575 $body = getReplyCitation($orig_header->from->personal);
576 $cnt = count($rewrap_body);
577 for ($i=0;$i<$cnt;$i++) {
578 sqWordWrap($rewrap_body[$i], ($editor_size - 2));
579 if (preg_match("/^(>+)/", $rewrap_body[$i], $matches)) {
580 $gt = $matches[1];
581 $body .= '>' . str_replace("\n", "\n$gt ", $rewrap_body[$i]) ."\n";
582 } else {
583 $body .= '> ' . $rewrap_body[$i] . "\n";
584 }
585 unset($rewrap_body[$i]);
586 }
587 break;
588 default:
589 break;
41b94d65 590 }
44560457 591 sqimap_logout($imapConnection);
41b94d65 592 }
593 $ret = array(
594 'send_to' => $send_to,
595 'send_to_cc' => $send_to_cc,
596 'send_to_bcc' => $send_to_bcc,
597 'subject' => $subject,
598 'mailprio' => $mailprio,
bdb92db3 599 'body' => $body,
600 'identity' => $identity
41b94d65 601 );
602
603 return ($ret);
48985d59 604} /* function newMail() */
605
78509c54 606
41b94d65 607function getAttachments($message, $session, $passed_id, $entities, $imapConnection) {
3f6b1b6f 608 global $attachments, $attachment_dir, $username, $data_dir;
41b94d65 609
48985d59 610 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
41b94d65 611 if (!count($message->entities) ||
612 ($message->type0 == 'message' && $message->type1 == 'rfc822')) {
613 if ( !in_array($message->entity_id, $entities) && $message->entity_id) {
614 if ($message->type0 == 'message' && $message->type1 == 'rfc822') {
a45887d7 615 $filename = decodeHeader($message->rfc822_header->subject.'.eml');
41b94d65 616 if ($filename == "") {
617 $filename = "untitled-".$message->entity_id.'.eml';
618 }
619 } else {
532160a5 620 $filename = decodeHeader($message->header->disposition->getProperty('filename'));
54555d00 621 if ($filename == '') {
532160a5 622 $name = decodeHeader($message->header->disposition->getProperty('name'));
54555d00 623 if ($name == '') {
624 $filename = "untitled-".$message->entity_id;
625 } else {
626 $filename = $name;
627 }
41b94d65 628 }
48985d59 629 }
48985d59 630 $localfilename = GenerateRandomString(32, '', 7);
631 $full_localfilename = "$hashed_attachment_dir/$localfilename";
632 while (file_exists($full_localfilename)) {
633 $localfilename = GenerateRandomString(32, '', 7);
634 $full_localfilename = "$hashed_attachment_dir/$localfilename";
635 }
0a17f9dd 636
48985d59 637 $newAttachment = array();
638 $newAttachment['localfilename'] = $localfilename;
639 $newAttachment['remotefilename'] = $filename;
41b94d65 640 $newAttachment['type'] = strtolower($message->type0 .
641 '/' . $message->type1);
da95c4b6 642 $newAttachment['id'] = strtolower($message->header->id);
643 $newAttachment['session'] = $session;
48985d59 644
645 /* Write Attachment to file */
646 $fp = fopen ("$hashed_attachment_dir/$localfilename", 'w');
647 fputs($fp, decodeBody(mime_fetch_body($imapConnection,
41b94d65 648 $passed_id, $message->entity_id),
48985d59 649 $message->header->encoding));
650 fclose ($fp);
48985d59 651 $attachments[] = $newAttachment;
652 }
734f4ee6 653 } else {
48985d59 654 for ($i = 0; $i < count($message->entities); $i++) {
41b94d65 655 getAttachments($message->entities[$i], $session, $passed_id, $entities, $imapConnection);
48985d59 656 }
657 }
d5aaaa7c 658 setPref($data_dir, $username, 'attachments', serialize($attachments));
48985d59 659 return;
660}
661
756406df 662function getMessage_RFC822_Attachment($message, $session, $passed_id,
663 $passed_ent_id='', $imapConnection) {
a6ec592e 664 global $attachments, $attachment_dir, $username, $data_dir, $uid_support;
665 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
756406df 666 if (!$passed_ent_id) {
667 $body_a = sqimap_run_command($imapConnection,
668 'FETCH '.$passed_id.' RFC822',
669 true, $response, $readmessage, $uid_support);
670 } else {
671 $body_a = sqimap_run_command($imapConnection,
672 'FETCH '.$passed_id.' BODY['.$passed_ent_id.']',
673 true, $response, $readmessage, $uid_support);
674 $message = $message->parent;
675 }
a6ec592e 676 if ($response = 'OK') {
677 $subject = encodeHeader($message->rfc822_header->subject);
678 array_shift($body_a);
679 $body = implode('', $body_a);
680 $body .= "\r\n";
681
682 $localfilename = GenerateRandomString(32, 'FILE', 7);
683 $full_localfilename = "$hashed_attachment_dir/$localfilename";
684
685 $fp = fopen( $full_localfilename, 'w');
686 fwrite ($fp, $body);
687 fclose($fp);
688 $newAttachment = array();
689 $newAttachment['localfilename'] = $localfilename;
690 $newAttachment['type'] = "message/rfc822";
691 $newAttachment['remotefilename'] = $subject.'.eml';
692 $newAttachment['session'] = $session;
693 $attachments[] = $newAttachment;
694 }
d5aaaa7c 695 setPref($data_dir, $username, 'attachments', serialize($attachments));
a6ec592e 696 return;
697}
698
41b94d65 699function showInputForm ($session, $values=false) {
700 global $send_to, $send_to_cc, $body,
48985d59 701 $passed_body, $color, $use_signature, $signature, $prefix_sig,
702 $editor_size, $attachments, $subject, $newmail,
41b94d65 703 $use_javascript_addr_book, $send_to_bcc, $passed_id, $mailbox,
48985d59 704 $from_htmladdr_search, $location_of_buttons, $attachment_dir,
705 $username, $data_dir, $identity, $draft_id, $delete_draft,
9c3e6cd4 706 $mailprio, $default_use_mdn, $mdn_user_support, $compose_new_win,
44560457 707 $saved_draft, $mail_sent, $sig_first, $edit_as_new, $action,
708 $username;
48985d59 709
3b487216 710 $subject = decodeHeader($subject, false);
41b94d65 711 if ($values) {
712 $send_to = $values['send_to'];
713 $send_to_cc = $values['send_to_cc'];
714 $send_to_bcc = $values['send_to_bcc'];
715 $subject = $values['subject'];
716 $mailprio = $values['mailprio'];
717 $body = $values['body'];
bdb92db3 718 $identity = $values['identity'];
41b94d65 719 }
720
48985d59 721 if ($use_javascript_addr_book) {
722 echo "\n". '<SCRIPT LANGUAGE=JavaScript><!--' . "\n" .
723 'function open_abook() { ' . "\n" .
724 ' var nwin = window.open("addrbook_popup.php","abookpopup",' .
725 '"width=670,height=300,resizable=yes,scrollbars=yes");' . "\n" .
726 ' if((!nwin.opener) && (document.windows != null))' . "\n" .
727 ' nwin.opener = document.windows;' . "\n" .
728 "}\n" .
729 '// --></SCRIPT>' . "\n\n";
730 }
731
41b94d65 732 echo "\n" . '<FORM name=compose action="compose.php" METHOD=POST ' .
733 'ENCTYPE="multipart/form-data"';
48985d59 734 do_hook("compose_form");
e02775fe 735
57257333 736
48985d59 737 echo ">\n";
738
41b94d65 739 if ($action == 'draft') {
740 echo '<input type="hidden" name="delete_draft" value="' . $passed_id . "\">\n";
48985d59 741 }
742 if (isset($delete_draft)) {
743 echo '<input type="hidden" name="delete_draft" value="' . $delete_draft. "\">\n";
744 }
da95c4b6 745 if (isset($session)) {
44560457 746 echo '<input type="hidden" name="session" value="' . $session . "\">\n";
da95c4b6 747 }
08bad2b1 748
749 if (isset($passed_id)) {
750 echo '<input type="hidden" name="passed_id" value="' . $passed_id . "\">\n";
751 }
44560457 752
9c3e6cd4 753 if ($saved_draft == 'yes') {
754 echo '<BR><CENTER><B>'. _("Draft Saved").'</CENTER></B>';
755 }
756 if ($mail_sent == 'yes') {
757 echo '<BR><CENTER><B>'. _("Your Message has been sent").'</CENTER></B>';
758 }
41b94d65 759 echo '<TABLE WIDTH="100%" ALIGN=center CELLSPACING=0 BORDER=0>' . "\n";
9c3e6cd4 760 if ($compose_new_win == '1') {
41b94d65 761 echo '<TABLE ALIGN=CENTER BGCOLOR="'.$color[0].'" WIDTH="100%" BORDER=0>'."\n";
762 echo ' <TR><TD></TD><TD ALIGN="RIGHT"><INPUT TYPE="BUTTON" NAME="Close" onClick="return self.close()" VALUE='._("Close").'></TD></TR>'."\n";
9c3e6cd4 763 }
78a35fcd 764 if ($location_of_buttons == 'top') {
765 showComposeButtonRow();
766 }
48985d59 767
715225af 768 $idents = getPref($data_dir, $username, 'identities', 0);
769 if ($idents > 1) {
41b94d65 770 echo ' <TR>' . "\n" .
771 ' <TD BGCOLOR="' . $color[4] . '" WIDTH="10%" ALIGN=RIGHT>' .
772 "\n" .
773 _("From:") .
774 ' </TD><TD BGCOLOR="' . $color[4] . '" WIDTH="90%">' . "\n" .
48985d59 775 '<select name=identity>' . "\n" .
776 '<option value=default>' .
777 htmlspecialchars(getPref($data_dir, $username, 'full_name'));
778 $em = getPref($data_dir, $username, 'email_address');
779 if ($em != '') {
248bfebb 780 echo htmlspecialchars(' <' . $em . '>') . "\n";
48985d59 781 }
782 for ($i = 1; $i < $idents; $i ++) {
248bfebb 783 echo '<option value="' . $i . '"';
48985d59 784 if (isset($identity) && $identity == $i) {
78a35fcd 785 echo ' SELECTED';
48985d59 786 }
787 echo '>' . htmlspecialchars(getPref($data_dir, $username,
788 'full_name' . $i));
248bfebb 789 $em = getPref($data_dir, $username, 'email_address' . $i);
48985d59 790 if ($em != '') {
78a35fcd 791 echo htmlspecialchars(' <' . $em . '>') . "\n";
48985d59 792 }
9f599fe3 793 echo '</option>';
48985d59 794 }
795 echo '</select>' . "\n" .
41b94d65 796 ' </TD>' . "\n" .
797 ' </TR>' . "\n";
798 }
799 echo ' <TR>' . "\n" .
800 ' <TD BGCOLOR="' . $color[4] . '" WIDTH="10%" ALIGN=RIGHT>' . "\n" .
801 _("To:") .
802 ' </TD><TD BGCOLOR="' . $color[4] . '" WIDTH="90%">' . "\n" .
803 ' <INPUT TYPE=text NAME="send_to" VALUE="' .
804 htmlspecialchars($send_to) . '" SIZE=60><BR>' . "\n" .
805 ' </TD>' . "\n" .
806 ' </TR>' . "\n" .
807 ' <TR>' . "\n" .
808 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=RIGHT>' . "\n" .
809 _("CC:") .
810 ' </TD><TD BGCOLOR="' . $color[4] . '" ALIGN=LEFT>' . "\n" .
811 ' <INPUT TYPE=text NAME="send_to_cc" SIZE=60 VALUE="' .
812 htmlspecialchars($send_to_cc) . '"><BR>' . "\n" .
813 ' </TD>' . "\n" .
814 ' </TR>' . "\n" .
815 ' <TR>' . "\n" .
816 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=RIGHT>' . "\n" .
817 _("BCC:") .
818 ' </TD><TD BGCOLOR="' . $color[4] . '" ALIGN=LEFT>' . "\n" .
819 ' <INPUT TYPE=text NAME="send_to_bcc" VALUE="' .
820 htmlspecialchars($send_to_bcc) . '" SIZE=60><BR>' . "\n" .
821 '</TD></TR>' . "\n" .
822 ' <TR>' . "\n" .
823 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=RIGHT>' . "\n" .
824 _("Subject:") .
825 ' </TD><TD BGCOLOR="' . $color[4] . '" ALIGN=LEFT>' . "\n";
826 echo ' <INPUT TYPE=text NAME=subject SIZE=60 VALUE="' .
827 htmlspecialchars($subject) . '">';
828 echo '</td></tr>' . "\n\n";
48985d59 829
78a35fcd 830 if ($location_of_buttons == 'between') {
831 showComposeButtonRow();
832 }
fdc83c55 833 if ($compose_new_win == '1') {
41b94d65 834 echo ' <TR>' . "\n" .
835 ' <TD BGCOLOR="' . $color[0] . '" COLSPAN=2 ALIGN=CENTER>' . "\n" .
836 ' <TEXTAREA NAME=body ROWS=20 COLS="' .
837 $editor_size . '" WRAP="VIRTUAL">';
fdc83c55 838 }
839 else {
41b94d65 840 echo ' <TR>' . "\n" .
841 ' <TD BGCOLOR="' . $color[4] . '" COLSPAN=2>' . "\n" .
842 ' &nbsp;&nbsp;<TEXTAREA NAME=body ROWS=20 COLS="' .
843 $editor_size . '" WRAP="VIRTUAL">';
fdc83c55 844 }
48985d59 845 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
3b17e952 846 if ($sig_first == '1') {
847 echo "\n\n".($prefix_sig==true? "-- \n":'').htmlspecialchars($signature);
848 echo "\n\n".htmlspecialchars($body);
849 }
850 else {
851 echo "\n\n".htmlspecialchars($body);
852 echo "\n\n".($prefix_sig==true? "-- \n":'').htmlspecialchars($signature);
853 }
854 }
855 else {
856 echo htmlspecialchars($body);
48985d59 857 }
41b94d65 858 echo '</TEXTAREA><BR>' . "\n" .
859 ' </TD>' . "\n" .
860 ' </TR>' . "\n";
48985d59 861
862 if ($location_of_buttons == 'bottom') {
863 showComposeButtonRow();
864 } else {
41b94d65 865 echo ' <TR><TD COLSPAN=2 ALIGN=LEFT>';
866 echo ' &nbsp; <INPUT TYPE=SUBMIT NAME=send VALUE="' . _("Send") . '"></TD></TR>' . "\n";
48985d59 867 }
46bb8da8 868
48985d59 869 /* This code is for attachments */
41b94d65 870 echo ' <TR>' . "\n" .
871 ' <TD VALIGN=MIDDLE ALIGN=RIGHT>' . "\n" .
872 _("Attach:") .
873 ' </TD>' . "\n" .
874 ' <TD VALIGN=MIDDLE ALIGN=LEFT>' . "\n" .
875 ' <INPUT NAME="attachfile" SIZE=48 TYPE="file">' . "\n" .
876 ' &nbsp;&nbsp;<input type="submit" name="attach"' .
877 ' value="' . _("Add") .'">' . "\n" .
878 ' </TD>' . "\n" .
879 ' </TR>' . "\n";
880
881 if (count($attachments)) {
882 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
883 echo '<tr><td bgcolor="' . $color[0] . '" align=right>' . "\n" .
884 '&nbsp;' .
885 '</td><td align=left bgcolor="' . $color[0] . '">';
886 foreach ($attachments as $key => $info) {
887 if ($info['session'] == $session) {
888 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
889 echo '<input type="checkbox" name="delete[]" value="' . $key . "\">\n" .
890 $info['remotefilename'] . ' - ' . $info['type'] . ' (' .
891 show_readable_size( filesize( $attached_file ) ) . ")<br>\n";
892 }
893 }
894
895 echo '<input type="submit" name="do_delete" value="' .
896 _("Delete selected attachments") . "\">\n" .
897 '</td></tr>';
898 }
899 /* End of attachment code */
07687736 900 if ($compose_new_win == '1') {
41b94d65 901 echo '</TABLE>'."\n";
07687736 902 }
41b94d65 903 echo '</TABLE>' . "\n";
44560457 904
905 echo '<input type="hidden" name="username" value="'. $username . "\">\n";
906 echo '<input type=hidden name=action value=' . $action . ">\n";
48985d59 907 echo '<INPUT TYPE=hidden NAME=mailbox VALUE="' . htmlspecialchars($mailbox) .
908 "\">\n" .
909 '</FORM>';
9f599fe3 910 do_hook('compose_bottom');
48985d59 911 echo '</BODY></HTML>' . "\n";
912}
913
914
70c4fd84 915function showComposeButtonRow() {
78a35fcd 916 global $use_javascript_addr_book, $save_as_draft,
70c4fd84 917 $default_use_priority, $mailprio, $default_use_mdn,
b2a7e5bc 918 $request_mdn, $request_dr,
70c4fd84 919 $data_dir, $username;
920
41b94d65 921 echo " <TR><TD>\n</TD><TD>\n";
ae25968c 922 if ($default_use_priority) {
923 if(!isset($mailprio)) {
924 $mailprio = "3";
70c4fd84 925 }
926 echo _("Priority") .': <select name="mailprio">'.
927 '<option value="1"'.($mailprio=='1'?' selected':'').'>'. _("High") .'</option>'.
928 '<option value="3"'.($mailprio=='3'?' selected':'').'>'. _("Normal") .'</option>'.
929 '<option value="5"'.($mailprio=='5'?' selected':'').'>'. _("Low").'</option>'.
930 "</select>";
ae25968c 931 }
932 $mdn_user_support=getPref($data_dir, $username, 'mdn_user_support',$default_use_mdn);
933 if ($default_use_mdn) {
70c4fd84 934 if ($mdn_user_support) {
935 echo "\n\t". _("Receipt") .': '.
b2a7e5bc 936 '<input type="checkbox" name="request_mdn" value=1'.
937 ($request_mdn=='1'?' checked':'') .'>'. _("On read").
938 ' <input type="checkbox" name="request_dr" value=1'.
939 ($request_dr=='1'?' checked':'') .'>'. _("On Delivery");
70c4fd84 940 }
ae25968c 941 }
48985d59 942
41b94d65 943 echo " </td></tr>\n <TR><td>\n </td><td>\n";
01265fba 944 echo "\n <INPUT TYPE=SUBMIT NAME=\"sigappend\" VALUE=\"". _("Signature") . "\">\n";
78a35fcd 945 if ($use_javascript_addr_book) {
46bb8da8 946 echo " <SCRIPT LANGUAGE=JavaScript><!--\n document.write(\"".
947 " <input type=button value=\\\""._("Addresses").
948 "\\\" onclick='javascript:open_abook();'>\");".
949 " // --></SCRIPT><NOSCRIPT>\n".
950 " <input type=submit name=\"html_addr_search\" value=\"".
951 _("Addresses")."\">".
952 " </NOSCRIPT>\n";
734f4ee6 953 } else {
78a35fcd 954 echo " <input type=submit name=\"html_addr_search\" value=\"".
955 _("Addresses")."\">";
956 }
957 echo "\n <INPUT TYPE=SUBMIT NAME=send VALUE=\"". _("Send") . "\">\n";
48985d59 958
78a35fcd 959 if ($save_as_draft) {
960 echo '<input type="submit" name ="draft" value="' . _("Save Draft") . "\">\n";
961 }
0a17f9dd 962
78a35fcd 963 do_hook('compose_button_row');
441f2d33 964
41b94d65 965 echo " </TD></TR>\n\n";
78a35fcd 966}
b278172f 967
70c4fd84 968function checkInput ($show) {
78a35fcd 969 /*
970 * I implemented the $show variable because the error messages
971 * were getting sent before the page header. So, I check once
972 * using $show=false, and then when i'm ready to display the error
973 * message, show=true
974 */
975 global $body, $send_to, $subject, $color;
976
977 if ($send_to == "") {
978 if ($show) {
0ad7dbda 979 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
78a35fcd 980 }
981 return false;
982 }
983 return true;
984} /* function checkInput() */
df15de21 985
3806fa52 986
00793a25 987/* True if FAILURE */
da95c4b6 988function saveAttachedFiles($session) {
3f6b1b6f 989 global $HTTP_POST_FILES, $attachment_dir, $attachments, $username,
990 $data_dir;
4c9d2242 991
992 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
993 $localfilename = GenerateRandomString(32, '', 7);
994 $full_localfilename = "$hashed_attachment_dir/$localfilename";
995 while (file_exists($full_localfilename)) {
996 $localfilename = GenerateRandomString(32, '', 7);
997 $full_localfilename = "$hashed_attachment_dir/$localfilename";
998 }
999
1000 if (!@rename($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) {
ceca62d3 1001 if (function_exists("move_uploaded_file")) {
1002 if (!@move_uploaded_file($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) {
056ddad7 1003 return true;
ceca62d3 1004 }
1005 } else {
ceca62d3 1006 if (!@copy($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) {
1007 return true;
1008 }
1009 }
1010
4c9d2242 1011 }
4c9d2242 1012 $newAttachment['localfilename'] = $localfilename;
1013 $newAttachment['remotefilename'] = $HTTP_POST_FILES['attachfile']['name'];
1014 $newAttachment['type'] = strtolower($HTTP_POST_FILES['attachfile']['type']);
da95c4b6 1015 $newAttachment['session'] = $session;
8ef72f33 1016
4c9d2242 1017 if ($newAttachment['type'] == "") {
8ef72f33 1018 $newAttachment['type'] = 'application/octet-stream';
056ddad7 1019 }
4c9d2242 1020 $attachments[] = $newAttachment;
3f6b1b6f 1021 setPref($data_dir, $username, 'attachments', serialize($attachments));
4c9d2242 1022}
1023
4c9d2242 1024
da95c4b6 1025function ClearAttachments($session)
4c9d2242 1026{
3f6b1b6f 1027 global $username, $attachments, $attachment_dir, $data_dir;
4c9d2242 1028 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
1029
da95c4b6 1030 $rem_attachments = array();
8712abea 1031 if (is_array($attachments)) {
1032 foreach ($attachments as $info) {
1033 if ($info['session'] == $session) {
1034 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
1035 if (file_exists($attached_file)) {
1036 unlink($attached_file);
1037 }
1038 }
1039 else {
1040 $rem_attachments[] = $info;
1041 }
1042 }
da95c4b6 1043 }
1044 $attachments = $rem_attachments;
3f6b1b6f 1045 setPref($data_dir, $username, 'attachments', serialize($attachments));
4c9d2242 1046}
1047
da95c4b6 1048
4c9d2242 1049function getReplyCitation($orig_from)
1050{
1051 global $reply_citation_style, $reply_citation_start, $reply_citation_end;
1052
1053 /* First, return an empty string when no citation style selected. */
1054 if (($reply_citation_style == '') || ($reply_citation_style == 'none')) {
1055 return '';
1056 }
1057
4c9d2242 1058 /* Make sure our final value isn't an empty string. */
1059 if ($orig_from == '') {
1060 return '';
1061 }
1062
1063 /* Otherwise, try to select the desired citation style. */
1064 switch ($reply_citation_style) {
1065 case 'author_said':
1066 $start = '';
1067 $end = ' ' . _("said") . ':';
1068 break;
1069 case 'quote_who':
1070 $start = '<' . _("quote") . ' ' . _("who") . '="';
1071 $end = '">';
1072 break;
1073 case 'user-defined':
55b321f2 1074 $start = $reply_citation_start .
1075 ($reply_citation_start == '' ? '' : ' ');
4c9d2242 1076 $end = $reply_citation_end;
1077 break;
1078 default:
1079 return '';
1080 }
1081
1082 /* Build and return the citation string. */
1083 return ($start . $orig_from . $end . "\n");
1084}
1085
5e9e90fd 1086?>