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