fd7e07cc1ea25c3290a70cd5dd10ef8f010891ff
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 * This code sends a mail.
11 * There are 4 modes of operation:
20 /* Path for SquirrelMail required files. */
21 define('SM_PATH','../');
23 /* SquirrelMail required files. */
24 require_once(SM_PATH
. 'include/validate.php');
25 require_once(SM_PATH
. 'functions/imap.php');
26 require_once(SM_PATH
. 'functions/date.php');
27 require_once(SM_PATH
. 'functions/mime.php');
28 require_once(SM_PATH
. 'functions/plugin.php');
29 require_once(SM_PATH
. 'functions/display_messages.php');
30 require_once(SM_PATH
. 'class/deliver/Deliver.class.php');
31 require_once(SM_PATH
. 'functions/addressbook.php');
33 /* --------------------- Get globals ------------------------------------- */
34 $username = $_SESSION['username'];
35 $onetimepad = $_SESSION['onetimepad'];
36 $base_uri = $_SESSION['base_uri'];
37 $delimiter = $_SESSION['delimiter'];
39 if (isset($_POST['return'])) {
40 $html_addr_search_done = 'Use Addresses';
42 if ( isset($_SESSION['composesession']) ) {
43 $composesession = $_SESSION['composesession'];
45 sqextractGlobalVar('action');
46 sqextractGlobalVar('session');
47 sqextractGlobalVar('mailbox');
48 sqextractGlobalVar('identity');
49 sqextractGlobalVar('send_to');
50 sqextractGlobalVar('send_to_cc');
51 sqextractGlobalVar('send_to_bcc');
52 sqextractGlobalVar('subject');
53 sqextractGlobalVar('body');
54 sqextractGlobalVar('mailprio');
55 sqextractGlobalVar('request_mdn');
56 sqextractGlobalVar('request_dr');
57 sqextractGlobalVar('html_addr_search');
58 sqextractGlobalVar('mail_sent');
59 sqextractGlobalVar('passed_id');
60 sqextractGlobalVar('passed_ent_id');
61 sqextractGlobalVar('send');
63 if ( isset($_POST['sigappend']) ) {
64 $sigappend = $_POST['sigappend'];
66 /* From addressbook search */
67 if ( isset($_POST['from_htmladdr_search']) ) {
68 $from_htmladdr_search = $_POST['from_htmladdr_search'];
70 if ( isset($_POST['addr_search_done']) ) {
71 $html_addr_search_done = $_POST['addr_search_done'];
73 if ( isset($_POST['send_to_search']) ) {
74 $send_to_search = &$_POST['send_to_search'];
78 sqextractGlobalVar('attach');
79 if ( isset($_POST['do_delete']) ) {
80 $do_delete = $_POST['do_delete'];
82 if ( isset($_POST['delete']) ) {
83 $delete = &$_POST['delete'];
85 if ( isset($_SESSION['compose_messages']) ) {
86 $compose_messages = &$_SESSION['compose_messages'];
90 /* Forward message as attachment */
91 if ( isset($_GET['attachedmessages']) ) {
92 $attachedmessages = $_GET['attachedmessages'];
96 sqextractGlobalVar('draft');
97 sqextractGlobalVar('draft_id');
98 sqextractGlobalVar('ent_num');
99 sqextractGlobalVar('saved_draft');
100 sqextractGlobalVar('delete_draft');
102 $key = $_COOKIE['key'];
104 /* --------------------- Specific Functions ------------------------------ */
106 function replyAllString($header) {
107 global $include_self_reply_all, $username, $data_dir;
110 * 1) Remove the addresses we'll be sending the message 'to'
112 $url_replytoall_avoid_addrs = '';
113 if (isset($header->replyto
)) {
114 $excl_ar = $header->getAddr_a('replyto');
117 * 2) Remove our identities from the CC list (they still can be in the
118 * TO list) only if $include_self_reply_all is turned off
120 if (!$include_self_reply_all) {
121 $email_address = strtolower(trim(getPref($data_dir, $username, 'email_address')));
122 $excl_ar[$email_address] = '';
123 $idents = getPref($data_dir, $username, 'identities');
124 if ($idents != '' && $idents > 1) {
126 for ($i = 1; $i < $idents; $i ++
) {
127 $cur_email_address = getPref($data_dir, $username,
128 'email_address' . $i);
129 $cur_email_address = strtolower(trim($cur_email_address));
130 $excl_ar[$cur_email_address] = '';
136 * 3) get the addresses.
138 $url_replytoall_ar = $header->getAddr_a(array('to','cc'), $excl_ar);
141 * 4) generate the string.
143 $url_replytoallcc = '';
144 foreach( $url_replytoall_ar as $email => $personal) {
146 $url_replytoallcc .= ", \"$personal\" <$email>";
148 $url_replytoallcc .= ', '. $email;
151 $url_replytoallcc = substr($url_replytoallcc,2);
152 return $url_replytoallcc;
155 function getforwardHeader($orig_header) {
158 $display = array( _("Subject") => strlen(_("Subject")),
159 _("From") => strlen(_("From")),
160 _("Date") => strlen(_("Date")),
161 _("To") => strlen(_("To")),
162 _("Cc") => strlen(_("Cc")) );
163 $maxsize = max($display);
164 $indent = str_pad('',$maxsize+
2);
165 foreach($display as $key => $val) {
166 $display[$key] = $key .': '. str_pad('', $maxsize - $val);
168 $bodyTop = str_pad(' '._("Original Message").' ',$editor_size -2,'-',STR_PAD_BOTH
) .
169 "\n". $display[_("Subject")] .
170 decodeHeader($orig_header->subject
) . "\n" .
171 $display[_("From")] .
172 decodeHeader($orig_header->getAddr_s('from',"\n$indent")) . "\n" .
173 $display[_("Date")] .
174 getLongDateString( $orig_header->date
). "\n" .
176 decodeHeader($orig_header->getAddr_s('to',"\n$indent")) ."\n";
177 if ($orig_header->cc
!= array() && $orig_header->cc
!='') {
178 $bodyTop .= $display[_("Cc")] . decodeHeader($orig_header->getAddr_s('cc',"\n$indent")) . "\n";
180 $bodyTop .= str_pad('', $editor_size -2 , '-') .
184 /* ----------------------------------------------------------------------- */
187 * If the session is expired during a post this restores the compose session
190 if (sqsession_is_registered('session_expired_post')) {
191 $session_expired_post = $_SESSION['session_expired_post'];
193 * extra check for username so we don't display previous post data from
194 * another user during this session.
196 if ($session_expired_post['username'] != $username) {
197 unset($session_expired_post);
198 sqsession_unregister('session_expired_post');
199 session_write_close();
201 foreach ($session_expired_post as $postvar => $val) {
208 $compose_messages = unserialize(urldecode($restoremessages));
209 sqsession_register($compose_messages,'compose_messages');
210 sqsession_register($composesession,'composesession');
214 $session_expired = true;
216 unset($session_expired_post);
217 sqsession_unregister('session_expired_post');
218 session_write_close();
219 if (!isset($mailbox)) {
222 if ($compose_new_win == '1') {
223 compose_Header($color, $mailbox);
225 displayPageHeader($color, $mailbox);
227 showInputForm($session, false);
230 if (!isset($composesession)) {
232 sqsession_register(0,'composesession');
235 if (!isset($session) ||
(isset($newmessage) && $newmessage)) {
236 sqsession_unregister('composesession');
237 $session = "$composesession" +
1;
238 $composesession = $session;
239 sqsession_register($composesession,'composesession');
241 if (!isset($compose_messages)) {
242 $compose_messages = array();
244 if (!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 */
246 $composeMessage = new Message();
247 $rfc822_header = new Rfc822Header();
248 $composeMessage->rfc822_header
= $rfc822_header;
249 $composeMessage->reply_rfc822_header
= '';
250 $compose_messages[$session] = $composeMessage;
251 sqsession_register($compose_messages,'compose_messages');
253 $composeMessage=$compose_messages[$session];
256 if (!isset($mailbox) ||
$mailbox == '' ||
($mailbox == 'None')) {
262 * Set $default_charset to correspond with the user's selection
263 * of language interface.
266 $composeMessage=$compose_messages[$session];
267 if (! deliverMessage($composeMessage, true)) {
268 showInputForm($session);
271 unset($compose_messages[$session]);
272 $draft_message = _("Draft Email Saved");
273 /* If this is a resumed draft, then delete the original */
274 if(isset($delete_draft)) {
275 Header("Location: delete_message.php?mailbox=" . urlencode($draft_folder) .
276 "&message=$delete_draft&sort=$sort&startMessage=1&saved_draft=yes");
280 if ($compose_new_win == '1') {
281 Header("Location: compose.php?saved_draft=yes&session=$composesession");
285 Header("Location: right_main.php?mailbox=$draft_folder&sort=$sort".
286 "&startMessage=1¬e=".urlencode($draft_message));
294 if (isset($_FILES['attachfile']) &&
295 $_FILES['attachfile']['tmp_name'] &&
296 $_FILES['attachfile']['tmp_name'] != 'none') {
297 $AttachFailure = saveAttachedFiles($session);
299 if (checkInput(false) && !isset($AttachFailure)) {
300 if ($mailbox == "All Folders") {
301 /* We entered compose via the search results page */
302 $mailbox="INBOX"; /* Send 'em to INBOX, that's safe enough */
304 $urlMailbox = urlencode (trim($mailbox));
305 if (! isset($passed_id)) {
309 * Set $default_charset to correspond with the user's selection
310 * of language interface.
314 * This is to change all newlines to \n
315 * We'll change them to \r\n later (in the sendMessage function)
317 $body = str_replace("\r\n", "\n", $body);
318 $body = str_replace("\r", "\n", $body);
321 * Rewrap $body so that no line is bigger than $editor_size
322 * This should only really kick in the sqWordWrap function
323 * if the browser doesn't support "VIRTUAL" as the wrap type.
325 $body = explode("\n", $body);
327 foreach ($body as $line) {
328 if( $line <> '-- ' ) {
329 $line = rtrim($line);
331 if (strlen($line) <= $editor_size +
1) {
332 $newBody .= $line . "\n";
334 sqWordWrap($line, $editor_size);
335 $newBody .= $line . "\n";
339 do_hook('compose_send');
340 $composeMessage=$compose_messages[$session];
342 $Result = deliverMessage($composeMessage);
344 showInputForm($session);
347 unset($compose_messages[$session]);
348 if ( isset($delete_draft)) {
349 Header("Location: delete_message.php?mailbox=" . urlencode( $draft_folder ).
350 "&message=$delete_draft&sort=$sort&startMessage=1&mail_sent=yes");
353 if ($compose_new_win == '1') {
355 Header("Location: compose.php?mail_sent=yes");
358 Header("Location: right_main.php?mailbox=$urlMailbox&sort=$sort".
362 if ($compose_new_win == '1') {
363 compose_Header($color, $mailbox);
366 displayPageHeader($color, $mailbox);
368 if (isset($AttachFailure)) {
369 plain_error_message(_("Could not move/copy file. File not attached"),
373 showInputForm($session);
374 /* sqimap_logout($imapConnection); */
376 } elseif (isset($html_addr_search_done)) {
377 if ($compose_new_win == '1') {
378 compose_Header($color, $mailbox);
381 displayPageHeader($color, $mailbox);
384 if (isset($send_to_search) && is_array($send_to_search)) {
385 foreach ($send_to_search as $k => $v) {
386 if (substr($k, 0, 1) == 'T') {
392 elseif (substr($k, 0, 1) == 'C') {
398 elseif (substr($k, 0, 1) == 'B') {
400 $send_to_bcc .= ', ';
406 showInputForm($session);
407 } elseif (isset($html_addr_search)) {
408 if (isset($_FILES['attachfile']) &&
409 $_FILES['attachfile']['tmp_name'] &&
410 $_FILES['attachfile']['tmp_name'] != 'none') {
411 if(saveAttachedFiles($session)) {
412 plain_error_message(_("Could not move/copy file. File not attached"), $color);
416 * I am using an include so as to elminiate an extra unnecessary
417 * click. If you can think of a better way, please implement it.
419 include_once('./addrbook_search_html.php');
420 } elseif (isset($attach)) {
421 if (saveAttachedFiles($session)) {
422 plain_error_message(_("Could not move/copy file. File not attached"), $color);
424 if ($compose_new_win == '1') {
425 compose_Header($color, $mailbox);
428 displayPageHeader($color, $mailbox);
430 showInputForm($session);
432 elseif (isset($sigappend)) {
433 $idents = getPref($data_dir, $username, 'identities', 0);
435 if ($identity == 'default') {
440 $signature = getSig($data_dir, $username, $no);
442 $body .= "\n\n".($prefix_sig==true?
"-- \n":'').$signature;
443 if ($compose_new_win == '1') {
444 compose_Header($color, $mailbox);
446 displayPageHeader($color, $mailbox);
448 showInputForm($session);
449 } elseif (isset($do_delete)) {
450 if ($compose_new_win == '1') {
451 compose_Header($color, $mailbox);
454 displayPageHeader($color, $mailbox);
457 if (isset($delete) && is_array($delete)) {
458 $composeMessage = $compose_messages[$session];
459 foreach($delete as $index) {
460 $attached_file = $composeMessage->entities
[$index]->att_local_name
;
461 unlink ($attached_file);
462 unset ($composeMessage->entities
[$index]);
464 $new_entities = array();
465 foreach ($composeMessage->entities
as $entity) {
466 $new_entities[] = $entity;
468 $composeMessage->entities
= $new_entities;
469 $compose_messages[$session] = $composeMessage;
470 sqsession_register($compose_messages, 'compose_messages');
472 showInputForm($session);
475 * This handles the default case as well as the error case
476 * (they had the same code) --> if (isset($smtpErrors))
479 if ($compose_new_win == '1') {
480 compose_Header($color, $mailbox);
482 displayPageHeader($color, $mailbox);
487 if (!isset($passed_ent_id)) {
490 if (!isset($passed_id)) {
493 if (!isset($mailbox)) {
496 if (!isset($action)) {
500 $values = newMail($mailbox,$passed_id,$passed_ent_id, $action, $session);
502 /* in case the origin is not read_body.php */
503 if (isset($send_to)) {
504 $values['send_to'] = $send_to;
506 if (isset($send_to_cc)) {
507 $values['send_to_cc'] = $send_to_cc;
509 if (isset($send_to_bcc)) {
510 $values['send_to_bcc'] = $send_to_bcc;
512 showInputForm($session, $values);
517 /**************** Only function definitions go below *************/
520 /* This function is used when not sending or adding attachments */
521 function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $session='') {
522 global $editor_size, $default_use_priority, $body,
523 $use_signature, $composesession, $data_dir, $username,
524 $username, $key, $imapServerAddress, $imapPort, $compose_messages,
527 $send_to = $send_to_cc = $send_to_bcc = $subject = $identity = '';
531 $imapConnection = sqimap_login($username, $key, $imapServerAddress,
534 sqimap_mailbox_select($imapConnection, $mailbox);
535 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
538 if ($passed_ent_id) {
539 /* redefine the messsage in case of message/rfc822 */
540 $message = $message->getEntity($passed_ent_id);
541 /* message is an entity which contains the envelope and type0=message
542 * and type1=rfc822. The actual entities are childs from
543 * $message->entities[0]. That's where the encoding and is located
546 $entities = $message->entities
[0]->findDisplayEntity
547 (array(), $alt_order = array('text/plain'));
548 if (!count($entities)) {
549 $entities = $message->entities
[0]->findDisplayEntity
550 (array(), $alt_order = array('text/plain','html/plain'));
552 $orig_header = $message->rfc822_header
; /* here is the envelope located */
553 /* redefine the message for picking up the attachments */
554 $message = $message->entities
[0];
557 $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain'));
558 if (!count($entities)) {
559 $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain','html/plain'));
561 $orig_header = $message->rfc822_header
;
564 $encoding = $message->header
->encoding
;
565 $type0 = $message->type0
;
566 $type1 = $message->type1
;
567 foreach ($entities as $ent) {
568 $unencoded_bodypart = mime_fetch_body($imapConnection, $passed_id, $ent);
569 $body_part_entity = $message->getEntity($ent);
570 $bodypart = decodeBody($unencoded_bodypart,
571 $body_part_entity->header
->encoding
);
572 if ($type1 == 'html') {
573 $bodypart = strip_tags($bodypart);
577 if ($default_use_priority) {
578 $mailprio = substr($orig_header->priority
,0,1);
585 //ClearAttachments($session);
588 $idents = getPref($data_dir, $username, 'identities');
589 $from_o = $orig_header->from
;
590 if (is_object($from_o)) {
591 $orig_from = $from_o->getAddress();
595 $identities = array();
596 if (!empty($idents) && $idents > 1) {
597 $identities[] = '"'. getPref($data_dir, $username, 'full_name')
598 . '" <' . getPref($data_dir, $username, 'email_address') . '>';
599 for ($i = 1; $i < $idents; $i++
) {
600 $enc_from_name = '"'.
601 getPref($data_dir, $username, 'full_name' . $i) .
603 getPref($data_dir, $username, 'email_address' . $i) . '>';
604 if ($enc_from_name == $orig_from && $i) {
608 $identities[] = $enc_from_name;
610 $identity_match = $orig_header->findAddress($identities);
611 if ($identity_match) {
612 $identity = $identity_match;
618 $use_signature = FALSE;
619 $send_to = decodeHeader($orig_header->getAddr_s('to'));
620 $send_to_cc = decodeHeader($orig_header->getAddr_s('cc'));
621 $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'));
622 $subject = decodeHeader($orig_header->subject
);
624 $body_ary = explode("\n", $body);
625 $cnt = count($body_ary) ;
627 for ($i=0; $i < $cnt; $i++
) {
628 if (!ereg("^[>\\s]*$", $body_ary[$i]) ||
!$body_ary[$i]) {
629 sqWordWrap($body_ary[$i], $editor_size );
630 $body .= $body_ary[$i] . "\n";
632 unset($body_ary[$i]);
635 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
637 case ('edit_as_new'):
638 $send_to = decodeHeader($orig_header->getAddr_s('to'));
639 $send_to_cc = decodeHeader($orig_header->getAddr_s('cc'));
640 $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'));
641 $subject = decodeHeader($orig_header->subject
);
642 $mailprio = $orig_header->priority
;
644 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
649 $subject = decodeHeader($orig_header->subject
);
650 if ((substr(strtolower($subject), 0, 4) != 'fwd:') &&
651 (substr(strtolower($subject), 0, 5) != '[fwd:') &&
652 (substr(strtolower($subject), 0, 6) != '[ fwd:')) {
653 $subject = '[Fwd: ' . $subject . ']';
655 $body = getforwardHeader($orig_header) . $body;
657 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
658 $body = "\n" . $body;
660 case ('forward_as_attachment'):
661 $composeMessage = getMessage_RFC822_Attachment($message, $composeMessage, $passed_id, $passed_ent_id, $imapConnection);
665 $send_to_cc = replyAllString($orig_header);
667 $send_to = $orig_header->reply_to
;
668 if (is_array($send_to) && count($send_to)) {
669 $send_to = decodeHeader($orig_header->getAddr_s('reply_to'));
670 } else if (is_object($send_to)) { /* unnessecarry, just for falesafe purpose */
671 $send_to = decodeHeader($orig_header->getAddr_s('reply_to'));
673 $send_to = decodeHeader($orig_header->getAddr_s('from'));
675 $subject = decodeHeader($orig_header->subject
);
676 $subject = str_replace('"', "'", $subject);
677 $subject = trim($subject);
678 if (substr(strtolower($subject), 0, 3) != 're:') {
679 $subject = 'Re: ' . $subject;
681 /* this corrects some wrapping/quoting problems on replies */
682 $rewrap_body = explode("\n", $body);
683 $from = (is_array($orig_header->from
)) ?
684 $orig_header->from
[0] : $orig_header->from
;
685 $body = getReplyCitation($from->getAddress(false));
687 $cnt = count($rewrap_body);
688 for ($i=0;$i<$cnt;$i++
) {
689 sqWordWrap($rewrap_body[$i], ($editor_size));
690 if (preg_match("/^(>+)/", $rewrap_body[$i], $matches)) {
692 $body .= '>' . str_replace("\n", "\n>$gt ", rtrim($rewrap_body[$i])) ."\n";
694 $body .= '> ' . str_replace("\n", "\n> ", rtrim($rewrap_body[$i])) . "\n";
696 unset($rewrap_body[$i]);
698 $composeMessage->reply_rfc822_header
= $orig_header;
703 $compose_messages[$session] = $composeMessage;
704 sqsession_register($compose_messages, 'compose_messages');
705 session_write_close();
706 sqimap_logout($imapConnection);
708 $ret = array( 'send_to' => $send_to,
709 'send_to_cc' => $send_to_cc,
710 'send_to_bcc' => $send_to_bcc,
711 'subject' => $subject,
712 'mailprio' => $mailprio,
714 'identity' => $identity );
717 } /* function newMail() */
719 function getAttachments($message, &$composeMessage, $passed_id, $entities, $imapConnection) {
720 global $attachment_dir, $username, $data_dir, $squirrelmail_language;
721 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
722 if (!count($message->entities
) ||
723 ($message->type0
== 'message' && $message->type1
== 'rfc822')) {
724 if ( !in_array($message->entity_id
, $entities) && $message->entity_id
) {
725 switch ($message->type0
) {
727 if ($message->type1
== 'rfc822') {
728 $filename = decodeHeader($message->rfc822_header
->subject
.'.eml');
729 if ($filename == "") {
730 $filename = "untitled-".$message->entity_id
.'.eml';
733 $filename = decodeHeader($message->getFilename());
737 $filename = decodeHeader($message->getFilename());
740 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
741 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
742 $filename = $languages[$squirrelmail_language]['XTRA_CODE']('encode', $filename);
745 $localfilename = GenerateRandomString(32, '', 7);
746 $full_localfilename = "$hashed_attachment_dir/$localfilename";
747 while (file_exists($full_localfilename)) {
748 $localfilename = GenerateRandomString(32, '', 7);
749 $full_localfilename = "$hashed_attachment_dir/$localfilename";
751 $message->att_local_name
= $full_localfilename;
752 if (!$message->mime_header
) { /* temporary hack */
753 $message->mime_header
= $message->header
;
756 $composeMessage->addEntity($message);
758 /* Write Attachment to file */
759 $fp = fopen ("$hashed_attachment_dir/$localfilename", 'wb');
760 fputs($fp, decodeBody(mime_fetch_body($imapConnection,
761 $passed_id, $message->entity_id
),
762 $message->header
->encoding
));
766 for ($i=0, $entCount=count($message->entities
); $i<$entCount;$i++
) {
767 $composeMessage=getAttachments($message->entities
[$i], $composeMessage, $passed_id, $entities, $imapConnection);
770 // setPref($data_dir, $username, 'attachments', serialize($attachments));
771 return $composeMessage;
774 function getMessage_RFC822_Attachment($message, $composeMessage, $passed_id,
775 $passed_ent_id='', $imapConnection) {
776 global $attachments, $attachment_dir, $username, $data_dir, $uid_support;
777 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
778 if (!$passed_ent_id) {
779 $body_a = sqimap_run_command($imapConnection,
780 'FETCH '.$passed_id.' RFC822',
781 TRUE, $response, $readmessage,
784 $body_a = sqimap_run_command($imapConnection,
785 'FETCH '.$passed_id.' BODY['.$passed_ent_id.']',
786 TRUE, $response, $readmessage, $uid_support);
787 $message = $message->parent
;
789 if ($response = 'OK') {
790 $subject = encodeHeader($message->rfc822_header
->subject
);
791 array_shift($body_a);
792 $body = implode('', $body_a) . "\r\n";
794 $localfilename = GenerateRandomString(32, 'FILE', 7);
795 $full_localfilename = "$hashed_attachment_dir/$localfilename";
797 $fp = fopen( $full_localfilename, 'w');
800 $composeMessage->initAttachment('message/rfc822',$subject.'.eml',
801 $full_localfilename);
803 return $composeMessage;
806 function showInputForm ($session, $values=false) {
807 global $send_to, $send_to_cc, $body,
808 $passed_body, $color, $use_signature, $signature, $prefix_sig,
809 $editor_size, $attachments, $subject, $newmail,
810 $use_javascript_addr_book, $send_to_bcc, $passed_id, $mailbox,
811 $from_htmladdr_search, $location_of_buttons, $attachment_dir,
812 $username, $data_dir, $identity, $draft_id, $delete_draft,
813 $mailprio, $default_use_mdn, $mdn_user_support, $compose_new_win,
814 $saved_draft, $mail_sent, $sig_first, $edit_as_new, $action,
815 $username, $compose_messages, $composesession, $default_charset;
817 $composeMessage = $compose_messages[$session];
819 $subject = decodeHeader($subject, false);
821 $send_to = $values['send_to'];
822 $send_to_cc = $values['send_to_cc'];
823 $send_to_bcc = $values['send_to_bcc'];
824 $subject = $values['subject'];
825 $mailprio = $values['mailprio'];
826 $body = $values['body'];
827 $identity = (int) $values['identity'];
830 if ($use_javascript_addr_book) {
831 echo "\n". '<SCRIPT LANGUAGE=JavaScript><!--' . "\n" .
832 'function open_abook() { ' . "\n" .
833 ' var nwin = window.open("addrbook_popup.php","abookpopup",' .
834 '"width=670,height=300,resizable=yes,scrollbars=yes");' . "\n" .
835 ' if((!nwin.opener) && (document.windows != null))' . "\n" .
836 ' nwin.opener = document.windows;' . "\n" .
838 '// --></SCRIPT>' . "\n\n";
841 echo "\n" . '<FORM name=compose action="compose.php" METHOD=POST ' .
842 'ENCTYPE="multipart/form-data"';
843 do_hook("compose_form");
847 if ($action == 'draft') {
848 echo '<input type="hidden" name="delete_draft" value="' . $passed_id . "\">\n";
850 if (isset($delete_draft)) {
851 echo '<input type="hidden" name="delete_draft" value="' . $delete_draft. "\">\n";
853 if (isset($session)) {
854 echo '<input type="hidden" name="session" value="' . $session . "\">\n";
857 if (isset($passed_id)) {
858 echo '<input type="hidden" name="passed_id" value="' . $passed_id . "\">\n";
861 if ($saved_draft == 'yes') {
862 echo '<BR><CENTER><B>'. _("Draft Saved").'</CENTER></B>';
864 if ($mail_sent == 'yes') {
865 echo '<BR><CENTER><B>'. _("Your Message has been sent").'</CENTER></B>';
867 echo '<TABLE ALIGN=center CELLSPACING=0 BORDER=0>' . "\n";
868 if ($compose_new_win == '1') {
869 echo '<TABLE ALIGN=CENTER BGCOLOR="'.$color[0].'" WIDTH="100%" BORDER=0>'."\n" .
870 ' <TR><TD></TD><TD ALIGN="RIGHT"><INPUT TYPE="BUTTON" NAME="Close" onClick="return self.close()" VALUE='._("Close").'></TD></TR>'."\n";
872 if ($location_of_buttons == 'top') {
873 showComposeButtonRow();
876 $idents = getPref($data_dir, $username, 'identities', 0);
878 echo ' <TR>' . "\n" .
879 ' <TD BGCOLOR="' . $color[4] . '" WIDTH="10%" ALIGN=RIGHT>' .
880 _("From:") . '</TD>' . "\n" .
881 ' <TD BGCOLOR="' . $color[4] . '" WIDTH="90%">' . "\n" .
882 ' <select name=identity>' . "\n" .
883 ' <option value=default>' .
884 htmlspecialchars(getPref($data_dir, $username, 'full_name'));
885 $em = getPref($data_dir, $username, 'email_address');
887 echo htmlspecialchars(' <' . $em . '>') . "\n";
889 for ($i = 1; $i < $idents; $i ++
) {
890 echo '<option value="' . $i . '"';
891 if (isset($identity) && $identity == $i) {
894 echo '>' . htmlspecialchars(getPref($data_dir, $username,
896 $em = getPref($data_dir, $username, 'email_address' . $i);
898 echo htmlspecialchars(' <' . $em . '>') . "\n";
902 echo '</select>' . "\n" .
906 echo ' <TR>' . "\n" .
907 ' <TD BGCOLOR="' . $color[4] . '" WIDTH="10%" ALIGN=RIGHT>' .
908 _("To:") . '</TD>' . "\n" .
909 ' <TD BGCOLOR="' . $color[4] . '" WIDTH="90%">' . "\n" .
910 ' <INPUT TYPE=text NAME="send_to" VALUE="' .
911 htmlspecialchars($send_to) . '" SIZE=60><BR>' . "\n" .
915 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=RIGHT>' .
916 _("CC:") . '</TD>' . "\n" .
917 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=LEFT>' . "\n" .
918 ' <INPUT TYPE=text NAME="send_to_cc" SIZE=60 VALUE="' .
919 htmlspecialchars($send_to_cc) . '"><BR>' . "\n" .
923 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=RIGHT>' .
924 _("BCC:") . '</TD>' . "\n" .
925 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=LEFT>' . "\n" .
926 ' <INPUT TYPE=text NAME="send_to_bcc" VALUE="' .
927 htmlspecialchars($send_to_bcc) . '" SIZE=60><BR>' . "\n" .
931 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=RIGHT>' .
932 _("Subject:") . '</TD>' . "\n" .
933 ' <TD BGCOLOR="' . $color[4] . '" ALIGN=LEFT>' . "\n";
934 echo ' <INPUT TYPE=text NAME=subject SIZE=60 VALUE="' .
935 htmlspecialchars($subject) . '">' . "\n" .
939 if ($location_of_buttons == 'between') {
940 showComposeButtonRow();
943 if ($compose_new_win == '1') {
944 echo ' <TR>' . "\n" .
945 ' <TD BGCOLOR="' . $color[0] . '" COLSPAN=2 ALIGN=CENTER>' . "\n" .
946 ' <TEXTAREA NAME=body ROWS=20 COLS="' .
947 $editor_size . '" WRAP="VIRTUAL">';
950 echo ' <TR>' . "\n" .
951 ' <TD BGCOLOR="' . $color[4] . '" COLSPAN=2>' . "\n" .
952 ' <TEXTAREA NAME=body ROWS=20 COLS="' .
953 $editor_size . '" WRAP="VIRTUAL">';
955 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
957 if ($identity == 'default') {
962 $signature = getSig($data_dir, $username, $no);
965 if ($sig_first == '1') {
966 if ($default_charset == 'iso-2022-jp') {
967 echo "\n\n".($prefix_sig==true?
"-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
969 echo "\n\n".($prefix_sig==true?
"-- \n":'').htmlspecialchars($signature);
971 echo "\n\n".htmlspecialchars($body);
974 echo "\n\n".htmlspecialchars($body);
975 if ($default_charset == 'iso-2022-jp') {
976 echo "\n\n".($prefix_sig==true?
"-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
978 echo "\n\n".($prefix_sig==true?
"-- \n":'').htmlspecialchars($signature);
983 echo htmlspecialchars($body);
985 echo '</TEXTAREA><BR>' . "\n" .
989 if ($location_of_buttons == 'bottom') {
990 showComposeButtonRow();
992 echo ' <TR>' . "\n" .
993 ' <TD COLSPAN=2 ALIGN=RIGHT>' . "\n" .
994 ' <INPUT TYPE=SUBMIT NAME=send VALUE="' . _("Send") . '">' . "\n" .
995 ' <BR><BR>' . "\n" .
1000 /* This code is for attachments */
1001 if ((bool) ini_get('file_uploads')) {
1002 echo ' <TR>' . "\n" .
1003 ' <TD COLSPAN=2>' . "\n" .
1004 ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.
1005 ' border="0" bgcolor="'.$color[9].'">' . "\n" .
1008 ' <table width="100%" cellpadding="3" cellspacing="0" align="center"'.
1009 ' border="0">' . "\n" .
1011 ' <TD VALIGN=MIDDLE ALIGN=RIGHT>' .
1012 _("Attach:") . '</TD>' . "\n" .
1013 ' <TD VALIGN=MIDDLE ALIGN=LEFT>' . "\n" .
1014 ' <INPUT NAME="attachfile" SIZE=48 TYPE="file">' . "\n" .
1015 ' <input type="submit" name="attach"' .
1016 ' value="' . _("Add") .'">' . "\n" .
1022 if ($composeMessage->entities
) {
1023 foreach ($composeMessage->entities
as $key => $attachment) {
1024 $attached_file = $attachment->att_local_name
;
1025 if ($attachment->att_local_name ||
$attachment->body_part
) {
1026 $attached_filename = decodeHeader($attachment->mime_header
->getParameter('name'));
1027 $type = $attachment->mime_header
->type0
.'/'.
1028 $attachment->mime_header
->type1
;
1029 $s_a[] = '<input type="checkbox" name="delete[]" value="' .
1030 $key . "\">\n" . $attached_filename . ' - ' . $type .
1031 ' ('.show_readable_size( filesize( $attached_file ) )
1037 foreach ($s_a as $s) {
1038 echo '<tr><td align=left colspan="2" bgcolor="' . $color[0] . '">'.$s.'</td></tr>';
1040 echo '<tr><td colspan="2"><input type="submit" name="do_delete" value="' .
1041 _("Delete selected attachments") . "\">\n" .
1044 echo ' </table>' . "\n" .
1047 ' </TABLE>' . "\n" .
1050 } // End of file_uploads if-block
1051 /* End of attachment code */
1052 if ($compose_new_win == '1') {
1053 echo '</TABLE>'."\n";
1056 echo '</TABLE>' . "\n" .
1057 '<input type="hidden" name="username" value="'. $username . "\">\n" .
1058 '<input type=hidden name=action value="' . $action . "\">\n" .
1059 '<INPUT TYPE=hidden NAME=mailbox VALUE="' . htmlspecialchars($mailbox) .
1062 store the complete ComposeMessages array in a hidden input value
1063 so we can restore them in case of a session timeout.
1065 echo '<input type=hidden name=restoremessages value="' . urlencode(serialize($compose_messages)) . "\">\n";
1066 echo '<input type=hidden name=composesession value="' . $composesession . "\">\n";
1067 echo '<input type=hidden name=querystring value="' . $_SERVER['QUERY_STRING'] . "\">\n";
1069 if (!(bool) ini_get('file_uploads')) {
1070 /* File uploads are off, so we didn't show that part of the form.
1071 To avoid bogus bug reports, tell the user why. */
1072 echo 'Because PHP file uploads are turned off, you can not attach files ';
1073 echo "to this message. Please see your system administrator for details.\r\n";
1077 do_hook('compose_bottom');
1078 echo '</BODY></HTML>' . "\n";
1082 function showComposeButtonRow() {
1083 global $use_javascript_addr_book, $save_as_draft,
1084 $default_use_priority, $mailprio, $default_use_mdn,
1085 $request_mdn, $request_dr,
1086 $data_dir, $username;
1088 echo ' <TR>' . "\n" .
1089 ' <TD></TD>' . "\n" .
1091 if ($default_use_priority) {
1092 if(!isset($mailprio)) {
1095 echo ' ' . _("Priority") .': <select name="mailprio">'.
1096 '<option value="1"'.($mailprio=='1'?
' selected':'').'>'. _("High") .'</option>'.
1097 '<option value="3"'.($mailprio=='3'?
' selected':'').'>'. _("Normal") .'</option>'.
1098 '<option value="5"'.($mailprio=='5'?
' selected':'').'>'. _("Low").'</option>'.
1101 $mdn_user_support=getPref($data_dir, $username, 'mdn_user_support',$default_use_mdn);
1102 if ($default_use_mdn) {
1103 if ($mdn_user_support) {
1104 echo ' ' . _("Receipt") .': '.
1105 '<input type="checkbox" name="request_mdn" value=1'.
1106 ($request_mdn=='1'?
' checked':'') .'>'. _("On Read").
1107 ' <input type="checkbox" name="request_dr" value=1'.
1108 ($request_dr=='1'?
' checked':'') .'>'. _("On Delivery");
1112 echo ' </TD>' . "\n" .
1115 ' <TD></TD>' . "\n" .
1117 ' <INPUT TYPE=SUBMIT NAME="sigappend" VALUE="' . _("Signature") . '">' . "\n";
1118 if ($use_javascript_addr_book) {
1119 echo " <SCRIPT LANGUAGE=JavaScript><!--\n document.write(\"".
1120 " <input type=button value=\\\""._("Addresses").
1121 "\\\" onclick='javascript:open_abook();'>\");".
1122 " // --></SCRIPT><NOSCRIPT>\n".
1123 " <input type=submit name=\"html_addr_search\" value=\"".
1124 _("Addresses")."\">".
1127 echo ' <input type=submit name="html_addr_search" value="'.
1128 _("Addresses").'">' . "\n";
1131 if ($save_as_draft) {
1132 echo ' <input type="submit" name ="draft" value="' . _("Save Draft") . "\">\n";
1135 echo ' <INPUT TYPE=submit NAME=send VALUE="'. _("Send") . '">' . "\n";
1136 do_hook('compose_button_row');
1138 echo ' </TD>' . "\n" .
1142 function checkInput ($show) {
1144 * I implemented the $show variable because the error messages
1145 * were getting sent before the page header. So, I check once
1146 * using $show=false, and then when i'm ready to display the error
1147 * message, show=true
1149 global $body, $send_to, $send_to_bcc, $subject, $color;
1151 if ($send_to == '' && $send_to_bcc == '') {
1153 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
1158 } /* function checkInput() */
1161 /* True if FAILURE */
1162 function saveAttachedFiles($session) {
1163 global $_FILES, $attachment_dir, $attachments, $username,
1164 $data_dir, $compose_messages;
1166 /* get out of here if no file was attached at all */
1167 if (! is_uploaded_file($_FILES['attachfile']['tmp_name']) ) {
1171 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
1172 $localfilename = GenerateRandomString(32, '', 7);
1173 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1174 while (file_exists($full_localfilename)) {
1175 $localfilename = GenerateRandomString(32, '', 7);
1176 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1179 if (!@move_uploaded_file
($_FILES['attachfile']['tmp_name'],$full_localfilename)) {
1183 $message = $compose_messages[$session];
1184 $type = strtolower($_FILES['attachfile']['type']);
1185 $name = $_FILES['attachfile']['name'];
1186 $message->initAttachment($type, $name, $full_localfilename);
1187 $compose_messages[$session] = $message;
1190 function ClearAttachments($composeMessage) {
1191 if ($composeMessage->att_local_name
) {
1192 $attached_file = $composeMessage->att_local_name
;
1193 if (file_exists($attached_file)) {
1194 unlink($attached_file);
1197 for ($i=0, $entCount=count($composeMessage->entities
);$i< $entCount; ++
$i) {
1198 ClearAttachments($composeMessage->entities
[$i]);
1204 function getReplyCitation($orig_from) {
1205 global $reply_citation_style, $reply_citation_start, $reply_citation_end;
1207 /* First, return an empty string when no citation style selected. */
1208 if (($reply_citation_style == '') ||
($reply_citation_style == 'none')) {
1212 /* Make sure our final value isn't an empty string. */
1213 if ($orig_from == '') {
1217 /* Otherwise, try to select the desired citation style. */
1218 switch ($reply_citation_style) {
1221 $end = ' ' . _("said") . ':';
1224 $start = '<' . _("quote") . ' ' . _("who") . '="';
1227 case 'user-defined':
1228 $start = $reply_citation_start .
1229 ($reply_citation_start == '' ?
'' : ' ');
1230 $end = $reply_citation_end;
1236 /* Build and return the citation string. */
1237 return ($start . $orig_from . $end . "\n");
1240 /* temporary function to make use of the deliver class.
1241 In the future the responsable backend should be automaticly loaded
1242 and conf.pl should show a list of available backends.
1243 The message also should be constructed by the message class.
1246 function deliverMessage($composeMessage, $draft=false) {
1247 global $send_to, $send_to_cc, $send_to_bcc, $mailprio, $subject, $body,
1248 $username, $popuser, $usernamedata, $identity, $data_dir,
1249 $request_mdn, $request_dr, $default_charset, $color, $useSendmail,
1251 global $imapServerAddress, $imapPort, $sent_folder, $key;
1253 $rfc822_header = $composeMessage->rfc822_header
;
1255 $abook = addressbook_init(false, true);
1257 $rfc822_header->to
= $rfc822_header->parseAddress($send_to,true, array(), '', $domain, array(&$abook,'lookup'));
1258 $rfc822_header->cc
= $rfc822_header->parseAddress($send_to_cc,true,array(), '',$domain, array(&$abook,'lookup'));
1259 $rfc822_header->bcc
= $rfc822_header->parseAddress($send_to_bcc,true, array(), '',$domain, array(&$abook,'lookup'));
1260 $rfc822_header->priority
= $mailprio;
1261 $rfc822_header->subject
= $subject;
1262 $special_encoding='';
1263 if (strtolower($default_charset) == 'iso-2022-jp') {
1264 if (mb_detect_encoding($body) == 'ASCII') {
1265 $special_encoding = '8bit';
1267 $body = mb_convert_encoding($body, 'JIS');
1268 $special_encoding = '7bit';
1271 $composeMessage->setBody($body);
1273 if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
1274 $popuser = $usernamedata[1];
1275 $domain = $usernamedata[2];
1276 unset($usernamedata);
1278 $popuser = $username;
1281 if (isset($identity) && $identity != 'default') {
1282 $from_mail = getPref($data_dir, $username,'email_address' . $identity);
1283 $full_name = getPref($data_dir, $username,'full_name' . $identity);
1284 $reply_to = getPref($data_dir, $username,'reply_to' . $identity);
1286 $from_mail = getPref($data_dir, $username, 'email_address');
1287 $full_name = getPref($data_dir, $username, 'full_name');
1288 $reply_to = getPref($data_dir, $username,'reply_to');
1291 $from_mail = "$popuser@$domain";
1294 $rfc822_header->from
= $rfc822_header->parseAddress($from_mail,true);
1296 $from = $rfc822_header->from
[0];
1297 if (!$from->host
) $from->host
= $domain;
1298 $from_addr = '"'.$full_name .'" <'.$from->mailbox
.'@'.$from->host
.'>';
1299 $rfc822_header->from
= $rfc822_header->parseAddress($from_addr,true);
1302 $rfc822_header->reply_to
= $rfc822_header->parseAddress($reply_to,true);
1304 /* Receipt: On Read */
1305 if (isset($request_mdn) && $request_mdn) {
1306 $rfc822_header->dnt
= $rfc822_header->parseAddress($from_mail,true);
1308 /* Receipt: On Delivery */
1309 if (isset($request_dr) && $request_dr) {
1310 $rfc822_header->more_headers
['Return-Receipt-To'] = $from_mail;
1312 /* multipart messages */
1313 if (count($composeMessage->entities
)) {
1314 $message_body = new Message();
1315 $message_body->body_part
= $composeMessage->body_part
;
1316 $composeMessage->body_part
= '';
1317 $mime_header = new MessageHeader
;
1318 $mime_header->type0
= 'text';
1319 $mime_header->type1
= 'plain';
1320 if ($special_encoding) {
1321 $mime_header->encoding
= $special_encoding;
1323 $mime_header->encoding
= 'us-ascii';
1325 if ($default_charset) {
1326 $mime_header->parameters
['charset'] = $default_charset;
1328 $message_body->mime_header
= $mime_header;
1329 array_unshift($composeMessage->entities
, $message_body);
1330 $content_type = new ContentType('multipart/mixed');
1332 $content_type = new ContentType('text/plain');
1334 if ($default_charset) {
1335 $content_type->properties
['charset']=$default_charset;
1338 $rfc822_header->content_type
= $content_type;
1339 $composeMessage->rfc822_header
= $rfc822_header;
1341 if (!$useSendmail && !$draft) {
1342 require_once(SM_PATH
. 'class/deliver/Deliver_SMTP.class.php');
1343 $deliver = new Deliver_SMTP();
1344 global $smtpServerAddress, $smtpPort, $pop_before_smtp, $smtp_auth_mech;
1346 if ($smtp_auth_mech == 'none') {
1350 global $key, $onetimepad;
1352 $pass = OneTimePadDecrypt($key, $onetimepad);
1355 $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ?
true : false;
1356 $stream = $deliver->initStream($composeMessage,$domain,0,
1357 $smtpServerAddress, $smtpPort, $user, $pass, $authPop);
1358 } elseif (!$draft) {
1359 require_once(SM_PATH
. 'class/deliver/Deliver_SendMail.class.php');
1360 global $sendmail_path;
1361 $deliver = new Deliver_SendMail();
1362 $stream = $deliver->initStream($composeMessage,$sendmail_path);
1364 global $draft_folder;
1365 require_once(SM_PATH
. 'class/deliver/Deliver_IMAP.class.php');
1366 $imap_stream = sqimap_login($username, $key, $imapServerAddress,
1368 if (sqimap_mailbox_exists ($imap_stream, $draft_folder)) {
1369 require_once(SM_PATH
. 'class/deliver/Deliver_IMAP.class.php');
1370 $imap_deliver = new Deliver_IMAP();
1371 $length = $imap_deliver->mail($composeMessage);
1372 sqimap_append ($imap_stream, $draft_folder, $length);
1373 $imap_deliver->mail($composeMessage, $imap_stream);
1374 sqimap_append_done ($imap_stream, $draft_folder);
1375 sqimap_logout($imap_stream);
1376 unset ($imap_deliver);
1379 $msg = '<br>Error: '._("Draft folder")." $draft_folder" . ' does not exist.';
1380 plain_error_message($msg, $color);
1386 $length = $deliver->mail($composeMessage, $stream);
1387 $succes = $deliver->finalizeStream($stream);
1390 $msg = $deliver->dlv_msg
. '<br>' .
1391 _("Server replied: ") . $deliver->dlv_ret_nr
. ' '.
1392 $deliver->dlv_server_msg
;
1393 plain_error_message($msg, $color);
1396 $imap_stream = sqimap_login($username, $key, $imapServerAddress,
1398 if (sqimap_mailbox_exists ($imap_stream, $sent_folder)) {
1399 sqimap_append ($imap_stream, $sent_folder, $length);
1400 require_once(SM_PATH
. 'class/deliver/Deliver_IMAP.class.php');
1401 $imap_deliver = new Deliver_IMAP();
1402 $imap_deliver->mail($composeMessage, $imap_stream);
1403 sqimap_append_done ($imap_stream, $sent_folder);
1404 unset ($imap_deliver);
1406 global $passed_id, $mailbox, $action;
1407 ClearAttachments($composeMessage);
1408 if ($action == 'reply' ||
$action == 'reply_all') {
1409 sqimap_mailbox_select ($imap_stream, $mailbox);
1410 sqimap_messages_flag ($imap_stream, $passed_id, $passed_id, 'Answered', true);
1412 sqimap_logout($imap_stream);