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