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