HTML fix
[squirrelmail.git] / src / compose.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * compose.php
5 *
6c84ba1e 6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This code sends a mail.
10 *
11 * There are 4 modes of operation:
12 * - Start new mail
13 * - Add an attachment
14 * - Send mail
15 * - Save As Draft
16 *
30967a1e 17 * @version $Id$
8f6f9ba5 18 * @package squirrelmail
35586184 19 */
f7fb20fe 20
30967a1e 21/**
22 * Path for SquirrelMail required files.
23 * @ignore
24 */
86725763 25define('SM_PATH','../');
26
27/* SquirrelMail required files. */
08185f2a 28require_once(SM_PATH . 'include/validate.php');
953fa718 29require_once(SM_PATH . 'functions/global.php');
86725763 30require_once(SM_PATH . 'functions/imap.php');
31require_once(SM_PATH . 'functions/date.php');
32require_once(SM_PATH . 'functions/mime.php');
86725763 33require_once(SM_PATH . 'functions/plugin.php');
34require_once(SM_PATH . 'functions/display_messages.php');
35require_once(SM_PATH . 'class/deliver/Deliver.class.php');
24192f77 36require_once(SM_PATH . 'functions/addressbook.php');
df96b37a 37require_once(SM_PATH . 'functions/forms.php');
a2b193bc 38require_once(SM_PATH . 'functions/identity.php');
91f2085b 39
0b97a708 40/* --------------------- Get globals ------------------------------------- */
953fa718 41/** COOKIE VARS */
42sqgetGlobalVar('key', $key, SQ_COOKIE);
0b97a708 43
953fa718 44/** SESSION VARS */
45sqgetGlobalVar('username', $username, SQ_SESSION);
46sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION);
47sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION);
48sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
49
50sqgetGlobalVar('composesession', $composesession, SQ_SESSION);
51sqgetGlobalVar('compose_messages', $compose_messages, SQ_SESSION);
52
53/** SESSION/POST/GET VARS */
b455793d 54sqgetGlobalVar('session',$session);
55sqgetGlobalVar('mailbox',$mailbox);
1e2a6ff6 56if(!sqgetGlobalVar('identity',$identity)) {
57 $identity=0;
58}
edd82fcf 59sqgetGlobalVar('send_to',$send_to);
60sqgetGlobalVar('send_to_cc',$send_to_cc);
61sqgetGlobalVar('send_to_bcc',$send_to_bcc);
62sqgetGlobalVar('subject',$subject);
63sqgetGlobalVar('body',$body);
b455793d 64sqgetGlobalVar('mailprio',$mailprio);
65sqgetGlobalVar('request_mdn',$request_mdn);
66sqgetGlobalVar('request_dr',$request_dr);
67sqgetGlobalVar('html_addr_search',$html_addr_search);
68sqgetGlobalVar('mail_sent',$mail_sent);
69sqgetGlobalVar('passed_id',$passed_id);
70sqgetGlobalVar('passed_ent_id',$passed_ent_id);
71sqgetGlobalVar('send',$send);
0b97a708 72
b455793d 73sqgetGlobalVar('attach',$attach);
12a0ed01 74
b455793d 75sqgetGlobalVar('draft',$draft);
76sqgetGlobalVar('draft_id',$draft_id);
77sqgetGlobalVar('ent_num',$ent_num);
78sqgetGlobalVar('saved_draft',$saved_draft);
79sqgetGlobalVar('delete_draft',$delete_draft);
a6d3eff6 80if ( sqgetGlobalVar('startMessage',$startMessage) ) {
81 $startMessage = (int)$startMessage;
82} else {
83 $startMessage = 1;
84}
953fa718 85
86/** POST VARS */
87sqgetGlobalVar('sigappend', $sigappend, SQ_POST);
88sqgetGlobalVar('from_htmladdr_search', $from_htmladdr_search, SQ_POST);
89sqgetGlobalVar('addr_search_done', $html_addr_search_done, SQ_POST);
90sqgetGlobalVar('send_to_search', $send_to_search, SQ_POST);
91sqgetGlobalVar('do_delete', $do_delete, SQ_POST);
92sqgetGlobalVar('delete', $delete, SQ_POST);
b0314f04 93sqgetGlobalVar('restoremessages', $restoremessages, SQ_POST);
953fa718 94if ( sqgetGlobalVar('return', $temp, SQ_POST) ) {
73ad81bf 95 $html_addr_search_done = 'Use Addresses';
953fa718 96}
97
98/** GET VARS */
99sqgetGlobalVar('attachedmessages', $attachedmessages, SQ_GET);
0b97a708 100
98a9cc03 101/** get smaction */
102if ( !sqgetGlobalVar('smaction',$action) )
103{
73ad81bf 104 if ( sqgetGlobalVar('smaction_reply',$tmp) ) $action = 'reply';
105 if ( sqgetGlobalVar('smaction_reply_all',$tmp) ) $action = 'reply_all';
106 if ( sqgetGlobalVar('smaction_forward',$tmp) ) $action = 'forward';
107 if ( sqgetGlobalVar('smaction_attache',$tmp) ) $action = 'forward_as_attachment';
108 if ( sqgetGlobalVar('smaction_draft',$tmp) ) $action = 'draft';
109 if ( sqgetGlobalVar('smaction_edit_new',$tmp) ) $action = 'edit_as_new';
98a9cc03 110}
111
3461167c 112/* Location (For HTTP 1.1 Header("Location: ...") redirects) */
113$location = get_location();
1e2a6ff6 114/* Identities (fetch only once) */
115$idents = get_identities();
3461167c 116
09044055 117/* --------------------- Specific Functions ------------------------------ */
0b97a708 118
41b94d65 119function replyAllString($header) {
73ad81bf 120 global $include_self_reply_all, $idents;
121 $excl_ar = array();
122 /**
123 * 1) Remove the addresses we'll be sending the message 'to'
124 */
73ad81bf 125 if (isset($header->replyto)) {
126 $excl_ar = $header->getAddr_a('replyto');
127 }
128 /**
129 * 2) Remove our identities from the CC list (they still can be in the
130 * TO list) only if $include_self_reply_all is turned off
131 */
132 if (!$include_self_reply_all) {
133 foreach($idents as $id) {
134 $excl_ar[strtolower(trim($id['email_address']))] = '';
135 }
136 }
137
138 /**
139 * 3) get the addresses.
140 */
141 $url_replytoall_ar = $header->getAddr_a(array('to','cc'), $excl_ar);
142
143 /**
144 * 4) generate the string.
145 */
146 $url_replytoallcc = '';
147 foreach( $url_replytoall_ar as $email => $personal) {
148 if ($personal) {
149 // if personal name contains address separator then surround
150 // the personal name with double quotes.
151 if (strpos($personal,',') !== false) {
152 $personal = '"'.$personal.'"';
153 }
154 $url_replytoallcc .= ", $personal <$email>";
155 } else {
156 $url_replytoallcc .= ', '. $email;
1e2a6ff6 157 }
73ad81bf 158 }
159 $url_replytoallcc = substr($url_replytoallcc,2);
160
161 return $url_replytoallcc;
09044055 162}
163
50706f77 164/**
165 * creates top line in reply citations
166 *
167 * Line style depends on user preferences.
168 * $orig_date argument is available only from 1.4.3 and 1.5.1 version.
169 * @param object $orig_from From: header object.
170 * @param integer $orig_date email's timestamp
171 * @return string reply citation
172 */
b0323712 173function getReplyCitation($orig_from, $orig_date) {
12a0ed01 174 global $reply_citation_style, $reply_citation_start, $reply_citation_end;
50706f77 175
05f7db7a 176 if (!is_object($orig_from)) {
d1205176 177 $sOrig_from = '';
05f7db7a 178 } else {
d1205176 179 $sOrig_from = decodeHeader($orig_from->getAddress(false),false,false,true);
05f7db7a 180 }
91c27aee 181
12a0ed01 182// $from = decodeHeader($orig_header->getAddr_s('from',"\n$indent"),false,false);
50706f77 183
12a0ed01 184 /* First, return an empty string when no citation style selected. */
185 if (($reply_citation_style == '') || ($reply_citation_style == 'none')) {
186 return '';
187 }
188
189 /* Make sure our final value isn't an empty string. */
d1205176 190 if ($sOrig_from == '') {
12a0ed01 191 return '';
192 }
193
194 /* Otherwise, try to select the desired citation style. */
195 switch ($reply_citation_style) {
50706f77 196 case 'author_said':
197 /**
198 * To translators: %s is for author's name
199 */
d1205176 200 $full_reply_citation = sprintf(_("%s wrote:"),$sOrig_from);
50706f77 201 break;
202 case 'quote_who':
203 // FIXME: do we have to translate xml formating?
204 $start = '<' . _("quote") . ' ' . _("who") . '="';
205 $end = '">';
d1205176 206 $full_reply_citation = $start . $sOrig_from . $end;
50706f77 207 break;
208 case 'date_time_author':
209 /**
210 * To translators:
91c27aee 211 * first %s is for date string, second %s is for author's name. Date uses
50706f77 212 * formating from "D, F j, Y g:i a" and "D, F j, Y H:i" translations.
213 * Example string:
0e1a248b 214 * "On Sat, December 24, 2004 23:59, Santa wrote:"
50706f77 215 * If you have to put author's name in front of date string, check comments about
216 * argument swapping at http://www.php.net/sprintf
217 */
d1205176 218 $full_reply_citation = sprintf(_("On %s, %s wrote:"), getLongDateString($orig_date), $sOrig_from);
50706f77 219 break;
220 case 'user-defined':
221 $start = $reply_citation_start .
222 ($reply_citation_start == '' ? '' : ' ');
223 $end = $reply_citation_end;
d1205176 224 $full_reply_citation = $start . $sOrig_from . $end;
50706f77 225 break;
226 default:
227 return '';
228 }
229
230 /* Add line feed and return the citation string. */
231 return ($full_reply_citation . "\n");
12a0ed01 232}
233
50706f77 234/**
235 * Creates header fields in forwarded email body
236 *
91c27aee 237 * $default_charset global must be set correctly before you call this function.
50706f77 238 * @param object $orig_header
91c27aee 239 * @return $string
50706f77 240 */
41b94d65 241function getforwardHeader($orig_header) {
50706f77 242 global $editor_size, $default_charset;
243
244 // using own strlen function in order to detect correct string length
245 $display = array( _("Subject") => sq_strlen(_("Subject"),$default_charset),
246 _("From") => sq_strlen(_("From"),$default_charset),
247 _("Date") => sq_strlen(_("Date"),$default_charset),
248 _("To") => sq_strlen(_("To"),$default_charset),
249 _("Cc") => sq_strlen(_("Cc"),$default_charset) );
73ad81bf 250 $maxsize = max($display);
251 $indent = str_pad('',$maxsize+2);
252 foreach($display as $key => $val) {
253 $display[$key] = $key .': '. str_pad('', $maxsize - $val);
254 }
255 $from = decodeHeader($orig_header->getAddr_s('from',"\n$indent"),false,false,true);
256 $from = str_replace('&nbsp;',' ',$from);
257 $to = decodeHeader($orig_header->getAddr_s('to',"\n$indent"),false,false,true);
258 $to = str_replace('&nbsp;',' ',$to);
259 $subject = decodeHeader($orig_header->subject,false,false,true);
260 $subject = str_replace('&nbsp;',' ',$subject);
50706f77 261
262 // using own str_pad function in order to create correct string pad
263 $bodyTop = sq_str_pad(' '._("Original Message").' ',$editor_size -2,'-',STR_PAD_BOTH,$default_charset) .
73ad81bf 264 "\n". $display[_("Subject")] . $subject . "\n" .
265 $display[_("From")] . $from . "\n" .
266 $display[_("Date")] . getLongDateString( $orig_header->date ). "\n" .
267 $display[_("To")] . $to . "\n";
268 if ($orig_header->cc != array() && $orig_header->cc !='') {
269 $cc = decodeHeader($orig_header->getAddr_s('cc',"\n$indent"),false,false,true);
270 $cc = str_replace('&nbsp;',' ',$cc);
271 $bodyTop .= $display[_("Cc")] .$cc . "\n";
272 }
273 $bodyTop .= str_pad('', $editor_size -2 , '-') .
274 "\n\n";
275 return $bodyTop;
41b94d65 276}
09044055 277/* ----------------------------------------------------------------------- */
278
44560457 279/*
1c044820 280 * If the session is expired during a post this restores the compose session
44560457 281 * vars.
282 */
5da08ef7 283if (sqsession_is_registered('session_expired_post')) {
953fa718 284 sqgetGlobalVar('session_expired_post', $session_expired_post, SQ_SESSION);
1c044820 285 /*
40934000 286 * extra check for username so we don't display previous post data from
287 * another user during this session.
288 */
289 if ($session_expired_post['username'] != $username) {
0ec1a14b 290 unset($session_expired_post);
0b97a708 291 sqsession_unregister('session_expired_post');
0ec1a14b 292 session_write_close();
40934000 293 } else {
294 foreach ($session_expired_post as $postvar => $val) {
295 if (isset($val)) {
296 $$postvar = $val;
297 } else {
298 $$postvar = '';
299 }
300 }
0ec1a14b 301 $compose_messages = unserialize(urldecode($restoremessages));
302 sqsession_register($compose_messages,'compose_messages');
303 sqsession_register($composesession,'composesession');
40934000 304 if (isset($send)) {
305 unset($send);
306 }
307 $session_expired = true;
308 }
5da08ef7 309 unset($session_expired_post);
0b97a708 310 sqsession_unregister('session_expired_post');
5da08ef7 311 session_write_close();
40934000 312 if (!isset($mailbox)) {
313 $mailbox = '';
314 }
315 if ($compose_new_win == '1') {
316 compose_Header($color, $mailbox);
317 } else {
91c27aee 318 $sHeaderJs = (isset($sHeaderJs)) ? $sHeaderJs : '';
319 if (strpos($action, 'reply') !== false && $reply_focus) {
320 $sBodyTagJs = 'onload="checkForm(\''.$replyfocus.'\');"';
321 } else {
322 $sBodyTagJs = 'onload="checkForm();"';
323 }
324 displayPageHeader($color, $mailbox,$sHeaderJs,$sBodyTagJs);
40934000 325 }
326 showInputForm($session, false);
327 exit();
44560457 328}
da95c4b6 329if (!isset($composesession)) {
330 $composesession = 0;
a43e4b90 331 sqsession_register(0,'composesession');
da95c4b6 332}
333
d7f8e6e6 334if (!isset($session) || (isset($newmessage) && $newmessage)) {
0b97a708 335 sqsession_unregister('composesession');
1c044820 336 $session = "$composesession" +1;
91f2085b 337 $composesession = $session;
a43e4b90 338 sqsession_register($composesession,'composesession');
1c044820 339}
a43e4b90 340if (!isset($compose_messages)) {
73ad81bf 341 $compose_messages = array();
a43e4b90 342}
91c27aee 343
40934000 344if (!isset($compose_messages[$session]) || ($compose_messages[$session] == NULL)) {
73ad81bf 345 /* if (!array_key_exists($session, $compose_messages)) { /* We can only do this in PHP >= 4.1 */
346 $composeMessage = new Message();
347 $rfc822_header = new Rfc822Header();
348 $composeMessage->rfc822_header = $rfc822_header;
349 $composeMessage->reply_rfc822_header = '';
350 $compose_messages[$session] = $composeMessage;
91c27aee 351
73ad81bf 352 sqsession_register($compose_messages,'compose_messages');
5628fdde 353} else {
73ad81bf 354 $composeMessage=$compose_messages[$session];
a43e4b90 355}
a43e4b90 356
00793a25 357if (!isset($mailbox) || $mailbox == '' || ($mailbox == 'None')) {
358 $mailbox = 'INBOX';
359}
360
4dfb9db7 361if ($draft) {
362 /*
363 * Set $default_charset to correspond with the user's selection
364 * of language interface.
365 */
366 set_my_charset();
367 $composeMessage=$compose_messages[$session];
b7ff469f 368 if (! deliverMessage($composeMessage, true)) {
da95c4b6 369 showInputForm($session);
00793a25 370 exit();
734f4ee6 371 } else {
5da08ef7 372 unset($compose_messages[$session]);
00793a25 373 $draft_message = _("Draft Email Saved");
374 /* If this is a resumed draft, then delete the original */
375 if(isset($delete_draft)) {
b034bca2 376 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, false);
377 sqimap_mailbox_select($imap_stream, $draft_folder);
378 // force bypass_trash=true because message should be saved when deliverMessage() returns true.
91c27aee 379 // in current implementation of sqimap_msgs_list_flag() single message id can
b034bca2 380 // be submitted as string. docs state that it should be array.
381 sqimap_msgs_list_delete($imap_stream, $draft_folder, $delete_draft, true);
382 if ($auto_expunge) {
383 sqimap_mailbox_expunge($imap_stream, $draft_folder, true);
9c3e6cd4 384 }
b034bca2 385 sqimap_logout($imap_stream);
386 }
387 if ($compose_new_win == '1') {
09047d19 388 if ( !isset($pageheader_sent) || !$pageheader_sent ) {
389 Header("Location: $location/compose.php?saved_draft=yes&session=$composesession");
390 } else {
391 echo ' <br><br><center><a href="' . $location
392 . '/compose.php?saved_sent=yes&amp;session=' . $composesession . '">'
393 . _("Return") . '</a></center>';
a6d3eff6 394 }
b034bca2 395 exit();
396 } else {
09047d19 397 if ( !isset($pageheader_sent) || !$pageheader_sent ) {
398 Header("Location: $location/right_main.php?mailbox=" . urlencode($draft_folder) .
b034bca2 399 "&startMessage=1&note=".urlencode($draft_message));
09047d19 400 } else {
401 echo ' <br><br><center><a href="' . $location
402 . '/right_main.php?mailbox=' . urlencode($draft_folder)
403 . '&amp;startMessage=1&amp;note=' . urlencode($draft_message) .'">'
404 . _("Return") . '</a></center>';
a6d3eff6 405 }
b034bca2 406 exit();
00793a25 407 }
408 }
409}
410
4dfb9db7 411if ($send) {
0b97a708 412 if (isset($_FILES['attachfile']) &&
73ad81bf 413 $_FILES['attachfile']['tmp_name'] &&
414 $_FILES['attachfile']['tmp_name'] != 'none') {
da95c4b6 415 $AttachFailure = saveAttachedFiles($session);
00793a25 416 }
417 if (checkInput(false) && !isset($AttachFailure)) {
73ad81bf 418 if ($mailbox == "All Folders") {
419 /* We entered compose via the search results page */
420 $mailbox="INBOX"; /* Send 'em to INBOX, that's safe enough */
421 }
00793a25 422 $urlMailbox = urlencode (trim($mailbox));
3f6b1b6f 423 if (! isset($passed_id)) {
424 $passed_id = 0;
00793a25 425 }
d4c5c50c 426 /**
00793a25 427 * Set $default_charset to correspond with the user's selection
7058a2a9 428 * of language interface.
00793a25 429 */
430 set_my_charset();
d4c5c50c 431 /**
00793a25 432 * This is to change all newlines to \n
7058a2a9 433 * We'll change them to \r\n later (in the sendMessage function)
00793a25 434 */
435 $body = str_replace("\r\n", "\n", $body);
436 $body = str_replace("\r", "\n", $body);
437
d4c5c50c 438 /**
18c9998a 439 * Rewrap $body so that no line is bigger than $editor_size
00793a25 440 */
18c9998a 441 $body = explode("\n", $body);
442 $newBody = '';
443 foreach ($body as $line) {
444 if( $line <> '-- ' ) {
73ad81bf 445 $line = rtrim($line);
18c9998a 446 }
200c9b8e 447 if (sq_strlen($line,$default_charset) <= $editor_size + 1) {
18c9998a 448 $newBody .= $line . "\n";
449 } else {
200c9b8e 450 sqWordWrap($line, $editor_size,$default_charset);
18c9998a 451 $newBody .= $line . "\n";
452
453 }
454
455 }
456 $body = $newBody;
1c044820 457
a43e4b90 458 $composeMessage=$compose_messages[$session];
d5181a1d 459
a91189d6 460 $Result = deliverMessage($composeMessage);
00793a25 461 if (! $Result) {
da95c4b6 462 showInputForm($session);
00793a25 463 exit();
464 }
dd4a44cd 465 unset($compose_messages[$session]);
b034bca2 466 /* if it is resumed draft, delete draft message */
00793a25 467 if ( isset($delete_draft)) {
b034bca2 468 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, false);
469 sqimap_mailbox_select($imap_stream, $draft_folder);
470 // bypass_trash=true because message should be saved when deliverMessage() returns true.
91c27aee 471 // in current implementation of sqimap_msgs_list_flag() single message id can
b034bca2 472 // be submitted as string. docs state that it should be array.
473 sqimap_msgs_list_delete($imap_stream, $draft_folder, $delete_draft, true);
474 if ($auto_expunge) {
475 sqimap_mailbox_expunge($imap_stream, $draft_folder, true);
476 }
477 sqimap_logout($imap_stream);
00793a25 478 }
9c3e6cd4 479 if ($compose_new_win == '1') {
09047d19 480 if ( !isset($pageheader_sent) || !$pageheader_sent ) {
481 Header("Location: $location/compose.php?mail_sent=yes");
482 } else {
483 echo ' <br><br><center><a href="' . $location
484 . '/compose.php?mail_sent=yes">'
485 . _("Return") . '</a></center>';
486 }
487 exit();
488 } else {
489 if ( !isset($pageheader_sent) || !$pageheader_sent ) {
490 Header("Location: $location/right_main.php?mailbox=$urlMailbox".
491 "&startMessage=$startMessage&mail_sent=yes");
492 } else {
493 echo ' <br><br><center><a href="' . $location
494 . "/right_main.php?mailbox=$urlMailbox"
495 . "&amp;startMessage=$startMessage&amp;mail_sent=yes\">"
496 . _("Return") . '</a></center>';
497 }
498 exit();
9c3e6cd4 499 }
734f4ee6 500 } else {
9c3e6cd4 501 if ($compose_new_win == '1') {
502 compose_Header($color, $mailbox);
503 }
504 else {
505 displayPageHeader($color, $mailbox);
506 }
00793a25 507 if (isset($AttachFailure)) {
73ad81bf 508 plain_error_message(_("Could not move/copy file. File not attached"),
509 $color);
00793a25 510 }
00793a25 511 checkInput(true);
da95c4b6 512 showInputForm($session);
00793a25 513 /* sqimap_logout($imapConnection); */
514 }
e02775fe 515} elseif (isset($html_addr_search_done)) {
73ad81bf 516 if ($compose_new_win == '1') {
517 compose_Header($color, $mailbox);
518 }
519 else {
520 displayPageHeader($color, $mailbox);
521 }
00793a25 522
523 if (isset($send_to_search) && is_array($send_to_search)) {
524 foreach ($send_to_search as $k => $v) {
525 if (substr($k, 0, 1) == 'T') {
526 if ($send_to) {
527 $send_to .= ', ';
528 }
529 $send_to .= $v;
530 }
531 elseif (substr($k, 0, 1) == 'C') {
532 if ($send_to_cc) {
533 $send_to_cc .= ', ';
534 }
535 $send_to_cc .= $v;
536 }
537 elseif (substr($k, 0, 1) == 'B') {
538 if ($send_to_bcc) {
539 $send_to_bcc .= ', ';
540 }
541 $send_to_bcc .= $v;
542 }
543 }
544 }
da95c4b6 545 showInputForm($session);
e02775fe 546} elseif (isset($html_addr_search)) {
0b97a708 547 if (isset($_FILES['attachfile']) &&
73ad81bf 548 $_FILES['attachfile']['tmp_name'] &&
549 $_FILES['attachfile']['tmp_name'] != 'none') {
0b97a708 550 if(saveAttachedFiles($session)) {
00793a25 551 plain_error_message(_("Could not move/copy file. File not attached"), $color);
552 }
553 }
554 /*
555 * I am using an include so as to elminiate an extra unnecessary
556 * click. If you can think of a better way, please implement it.
557 */
558 include_once('./addrbook_search_html.php');
e02775fe 559} elseif (isset($attach)) {
da95c4b6 560 if (saveAttachedFiles($session)) {
00793a25 561 plain_error_message(_("Could not move/copy file. File not attached"), $color);
562 }
73ad81bf 563 if ($compose_new_win == '1') {
564 compose_Header($color, $mailbox);
565 } else {
566 displayPageHeader($color, $mailbox);
567 }
da95c4b6 568 showInputForm($session);
01265fba 569}
570elseif (isset($sigappend)) {
1e2a6ff6 571 $signature = $idents[$identity]['signature'];
572
01265fba 573 $body .= "\n\n".($prefix_sig==true? "-- \n":'').$signature;
574 if ($compose_new_win == '1') {
73ad81bf 575 compose_Header($color, $mailbox);
01265fba 576 } else {
577 displayPageHeader($color, $mailbox);
578 }
da95c4b6 579 showInputForm($session);
e02775fe 580} elseif (isset($do_delete)) {
73ad81bf 581 if ($compose_new_win == '1') {
582 compose_Header($color, $mailbox);
583 } else {
584 displayPageHeader($color, $mailbox);
585 }
00793a25 586
00793a25 587 if (isset($delete) && is_array($delete)) {
a43e4b90 588 $composeMessage = $compose_messages[$session];
00793a25 589 foreach($delete as $index) {
a91189d6 590 $attached_file = $composeMessage->entities[$index]->att_local_name;
a61878d0 591 unlink ($attached_file);
a91189d6 592 unset ($composeMessage->entities[$index]);
593 }
594 $new_entities = array();
595 foreach ($composeMessage->entities as $entity) {
596 $new_entities[] = $entity;
00793a25 597 }
a91189d6 598 $composeMessage->entities = $new_entities;
599 $compose_messages[$session] = $composeMessage;
600 sqsession_register($compose_messages, 'compose_messages');
00793a25 601 }
da95c4b6 602 showInputForm($session);
734f4ee6 603} else {
00793a25 604 /*
605 * This handles the default case as well as the error case
1c044820 606 * (they had the same code) --> if (isset($smtpErrors))
00793a25 607 */
44560457 608
609 if ($compose_new_win == '1') {
73ad81bf 610 compose_Header($color, $mailbox);
44560457 611 } else {
73ad81bf 612 displayPageHeader($color, $mailbox);
44560457 613 }
00793a25 614
615 $newmail = true;
616
a61878d0 617 if (!isset($passed_ent_id)) {
618 $passed_ent_id = '';
619 }
620 if (!isset($passed_id)) {
1c044820 621 $passed_id = '';
a61878d0 622 }
623 if (!isset($mailbox)) {
624 $mailbox = '';
1c044820 625 }
a61878d0 626 if (!isset($action)) {
627 $action = '';
628 }
1c044820 629
44560457 630 $values = newMail($mailbox,$passed_id,$passed_ent_id, $action, $session);
b9928adc 631
632 /* in case the origin is not read_body.php */
633 if (isset($send_to)) {
73ad81bf 634 $values['send_to'] = $send_to;
b9928adc 635 }
636 if (isset($send_to_cc)) {
73ad81bf 637 $values['send_to_cc'] = $send_to_cc;
b9928adc 638 }
639 if (isset($send_to_bcc)) {
73ad81bf 640 $values['send_to_bcc'] = $send_to_bcc;
b9928adc 641 }
2a2f2185 642 if (isset($subject)) {
73ad81bf 643 $values['subject'] = $subject;
2a2f2185 644 }
41b94d65 645 showInputForm($session, $values);
00793a25 646}
647
648exit();
649
00793a25 650/**************** Only function definitions go below *************/
651
92c6f757 652function getforwardSubject($subject)
653{
654 if ((substr(strtolower($subject), 0, 4) != 'fwd:') &&
73ad81bf 655 (substr(strtolower($subject), 0, 5) != '[fwd:') &&
656 (substr(strtolower($subject), 0, 6) != '[ fwd:')) {
92c6f757 657 $subject = '[Fwd: ' . $subject . ']';
658 }
659 return $subject;
660}
00793a25 661
48985d59 662/* This function is used when not sending or adding attachments */
44560457 663function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $session='') {
1e2a6ff6 664 global $editor_size, $default_use_priority, $body, $idents,
ce68b76b 665 $use_signature, $data_dir, $username,
73ad81bf 666 $username, $key, $imapServerAddress, $imapPort, $compose_messages,
667 $composeMessage, $body_quote;
4e519821 668 global $languages, $squirrelmail_language, $default_charset;
e7f1a81d 669
d4f20027 670 /*
671 * Set $default_charset to correspond with the user's selection
672 * of language interface. $default_charset global is not correct,
673 * if message is composed in new window.
674 */
675 set_my_charset();
676
91f2085b 677 $send_to = $send_to_cc = $send_to_bcc = $subject = $identity = '';
bdb92db3 678 $mailprio = 3;
44560457 679
41b94d65 680 if ($passed_id) {
44560457 681 $imapConnection = sqimap_login($username, $key, $imapServerAddress,
73ad81bf 682 $imapPort, 0);
a61878d0 683
48985d59 684 sqimap_mailbox_select($imapConnection, $mailbox);
41b94d65 685 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
1c044820 686
a61878d0 687 $body = '';
688 if ($passed_ent_id) {
689 /* redefine the messsage in case of message/rfc822 */
690 $message = $message->getEntity($passed_ent_id);
691 /* message is an entity which contains the envelope and type0=message
73ad81bf 692 * and type1=rfc822. The actual entities are childs from
693 * $message->entities[0]. That's where the encoding and is located
694 */
a61878d0 695
696 $entities = $message->entities[0]->findDisplayEntity
73ad81bf 697 (array(), $alt_order = array('text/plain'));
a61878d0 698 if (!count($entities)) {
699 $entities = $message->entities[0]->findDisplayEntity
73ad81bf 700 (array(), $alt_order = array('text/plain','html/plain'));
a61878d0 701 }
702 $orig_header = $message->rfc822_header; /* here is the envelope located */
703 /* redefine the message for picking up the attachments */
704 $message = $message->entities[0];
705
706 } else {
707 $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain'));
708 if (!count($entities)) {
709 $entities = $message->findDisplayEntity (array(), $alt_order = array('text/plain','html/plain'));
710 }
711 $orig_header = $message->rfc822_header;
712 }
1c044820 713
a61878d0 714 $type0 = $message->type0;
715 $type1 = $message->type1;
41b94d65 716 foreach ($entities as $ent) {
b455e47b 717 $msg = $message->getEntity($ent);
718 $type0 = $msg->type0;
719 $type1 = $msg->type1;
a61878d0 720 $unencoded_bodypart = mime_fetch_body($imapConnection, $passed_id, $ent);
721 $body_part_entity = $message->getEntity($ent);
722 $bodypart = decodeBody($unencoded_bodypart,
73ad81bf 723 $body_part_entity->header->encoding);
a61878d0 724 if ($type1 == 'html') {
5b755d9f 725 $bodypart = str_replace("\n", ' ', $bodypart);
bb977394 726 $bodypart = preg_replace(array('/<\/?p>/i','/<div><\/div>/i','/<br\s*(\/)*>/i','/<\/?div>/i'), "\n", $bodypart);
5b755d9f 727 $bodypart = str_replace(array('&nbsp;','&gt;','&lt;'),array(' ','>','<'),$bodypart);
a61878d0 728 $bodypart = strip_tags($bodypart);
729 }
e842b215 730 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
73ad81bf 731 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode')) {
e842b215 732 if (mb_detect_encoding($bodypart) != 'ASCII') {
f4bb5d22 733 $bodypart = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode', $bodypart);
e842b215 734 }
735 }
eceefdfe 736
bfa54da7 737 // charset encoding in compose form stuff
73ad81bf 738 if (isset($body_part_entity->header->parameters['charset'])) {
739 $actual = $body_part_entity->header->parameters['charset'];
740 } else {
741 $actual = 'us-ascii';
742 }
beca818e 743
73ad81bf 744 if ( $actual && is_conversion_safe($actual) && $actual != $default_charset){
745 $bodypart = charset_convert($actual,$bodypart,$default_charset,false);
746 }
bfa54da7 747 // end of charset encoding in compose
eceefdfe 748
a61878d0 749 $body .= $bodypart;
750 }
751 if ($default_use_priority) {
752 $mailprio = substr($orig_header->priority,0,1);
753 if (!$mailprio) {
754 $mailprio = 3;
755 }
756 } else {
757 $mailprio = '';
758 }
a43e4b90 759 //ClearAttachments($session);
bdb92db3 760
761 $identity = '';
a45887d7 762 $from_o = $orig_header->from;
fe868193 763 if (is_array($from_o)) {
764 if (isset($from_o[0])) {
765 $from_o = $from_o[0];
766 }
767 }
bdb92db3 768 if (is_object($from_o)) {
769 $orig_from = $from_o->getAddress();
770 } else {
771 $orig_from = '';
a61878d0 772 }
1e2a6ff6 773
a91189d6 774 $identities = array();
1e2a6ff6 775 if (count($idents) > 1) {
776 foreach($idents as $nr=>$data) {
777 $enc_from_name = '"'.$data['full_name'].'" <'. $data['email_address'].'>';
778 if($enc_from_name == $orig_from) {
779 $identity = $nr;
a61878d0 780 break;
781 }
a91189d6 782 $identities[] = $enc_from_name;
783 }
1e2a6ff6 784
a91189d6 785 $identity_match = $orig_header->findAddress($identities);
786 if ($identity_match) {
787 $identity = $identity_match;
a61878d0 788 }
bdb92db3 789 }
a61878d0 790
791 switch ($action) {
73ad81bf 792 case ('draft'):
793 $use_signature = FALSE;
794 $composeMessage->rfc822_header = $orig_header;
795 $send_to = decodeHeader($orig_header->getAddr_s('to'),false,false,true);
796 $send_to_cc = decodeHeader($orig_header->getAddr_s('cc'),false,false,true);
797 $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'),false,false,true);
798 $send_from = $orig_header->getAddr_s('from');
799 $send_from_parts = new AddressStructure();
800 $send_from_parts = $orig_header->parseAddress($send_from);
801 $send_from_add = $send_from_parts->mailbox . '@' . $send_from_parts->host;
802 $identities = get_identities();
803 if (count($identities) > 0) {
804 foreach($identities as $iddata) {
805 if ($send_from_add == $iddata['email_address']) {
806 $identity = $iddata['index'];
807 break;
808 }
a656569f 809 }
810 }
73ad81bf 811 $subject = decodeHeader($orig_header->subject,false,false,true);
812 /* remember the references and in-reply-to headers in case of an reply */
813 $composeMessage->rfc822_header->more_headers['References'] = $orig_header->references;
814 $composeMessage->rfc822_header->more_headers['In-Reply-To'] = $orig_header->in_reply_to;
815 // rewrap the body to clean up quotations and line lengths
816 sqBodyWrap($body, $editor_size);
817 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
818 break;
819 case ('edit_as_new'):
820 $send_to = decodeHeader($orig_header->getAddr_s('to'),false,false,true);
821 $send_to_cc = decodeHeader($orig_header->getAddr_s('cc'),false,false,true);
822 $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'),false,false,true);
823 $subject = decodeHeader($orig_header->subject,false,false,true);
824 $mailprio = $orig_header->priority;
825 $orig_from = '';
826 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
827 // rewrap the body to clean up quotations and line lengths
828 sqBodyWrap($body, $editor_size);
829 break;
830 case ('forward'):
831 $send_to = '';
832 $subject = getforwardSubject(decodeHeader($orig_header->subject,false,false,true));
833 $body = getforwardHeader($orig_header) . $body;
834 // the logic for calling sqUnWordWrap here would be to allow the browser to wrap the lines
835 // forwarded message text should be as undisturbed as possible, so commenting out this call
836 // sqUnWordWrap($body);
837 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
91c27aee 838
73ad81bf 839 //add a blank line after the forward headers
840 $body = "\n" . $body;
841 break;
842 case ('forward_as_attachment'):
843 $subject = getforwardSubject(decodeHeader($orig_header->subject,false,false,true));
844 $composeMessage = getMessage_RFC822_Attachment($message, $composeMessage, $passed_id, $passed_ent_id, $imapConnection);
845 $body = '';
846 break;
847 case ('reply_all'):
848 if(isset($orig_header->mail_followup_to) && $orig_header->mail_followup_to) {
849 $send_to = $orig_header->getAddr_s('mail_followup_to');
b268e66b 850 } else {
73ad81bf 851 $send_to_cc = replyAllString($orig_header);
852 $send_to_cc = decodeHeader($send_to_cc,false,false,true);
b268e66b 853 }
73ad81bf 854 case ('reply'):
855 // skip this if send_to was already set right above here
856 if(!$send_to) {
857 $send_to = $orig_header->reply_to;
858 if (is_array($send_to) && count($send_to)) {
859 $send_to = $orig_header->getAddr_s('reply_to');
860 } else if (is_object($send_to)) { /* unneccesarry, just for failsafe purpose */
861 $send_to = $orig_header->getAddr_s('reply_to');
862 } else {
863 $send_to = $orig_header->getAddr_s('from');
864 }
dd4a44cd 865 }
73ad81bf 866 $send_to = decodeHeader($send_to,false,false,true);
867 $subject = decodeHeader($orig_header->subject,false,false,true);
868 $subject = str_replace('"', "'", $subject);
869 $subject = trim($subject);
870 if (substr(strtolower($subject), 0, 3) != 're:') {
871 $subject = 'Re: ' . $subject;
872 }
873 /* this corrects some wrapping/quoting problems on replies */
874 $rewrap_body = explode("\n", $body);
875 $from = (is_array($orig_header->from)) ? $orig_header->from[0] : $orig_header->from;
876 $body = '';
877 $strip_sigs = getPref($data_dir, $username, 'strip_sigs');
878 foreach ($rewrap_body as $line) {
879 if ($strip_sigs && substr($line,0,3) == '-- ') {
880 break;
881 }
882 if (preg_match("/^(>+)/", $line, $matches)) {
883 $gt = $matches[1];
884 $body .= $body_quote . str_replace("\n", "\n$body_quote$gt ", rtrim($line)) ."\n";
885 } else {
886 $body .= $body_quote . (!empty($body_quote) ? ' ' : '') . str_replace("\n", "\n$body_quote" . (!empty($body_quote) ? ' ' : ''), rtrim($line)) . "\n";
887 }
a61878d0 888 }
c9d61baf 889
73ad81bf 890 //rewrap the body to clean up quotations and line lengths
891 $body = sqBodyWrap ($body, $editor_size);
c9d61baf 892
73ad81bf 893 $body = getReplyCitation($from , $orig_header->date) . $body;
894 $composeMessage->reply_rfc822_header = $orig_header;
12a0ed01 895
73ad81bf 896 break;
897 default:
898 break;
41b94d65 899 }
a91189d6 900 $compose_messages[$session] = $composeMessage;
901 sqsession_register($compose_messages, 'compose_messages');
5da08ef7 902 session_write_close();
a61878d0 903 sqimap_logout($imapConnection);
41b94d65 904 }
a61878d0 905 $ret = array( 'send_to' => $send_to,
73ad81bf 906 'send_to_cc' => $send_to_cc,
907 'send_to_bcc' => $send_to_bcc,
908 'subject' => $subject,
909 'mailprio' => $mailprio,
910 'body' => $body,
911 'identity' => $identity );
a61878d0 912
41b94d65 913 return ($ret);
48985d59 914} /* function newMail() */
915
50706f77 916/**
917 * downloads attachments from original message, stores them in attachment directory and adds
918 * them to composed message.
919 * @param object $message
920 * @param object $composeMessage
921 * @param integer $passed_id
922 * @param mixed $entities
923 * @param mixed $imapConnection
91c27aee 924 * @return object
50706f77 925 */
a43e4b90 926function getAttachments($message, &$composeMessage, $passed_id, $entities, $imapConnection) {
8df4c929 927 global $attachment_dir, $username, $data_dir, $squirrelmail_language, $languages;
48985d59 928 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
1c044820 929 if (!count($message->entities) ||
73ad81bf 930 ($message->type0 == 'message' && $message->type1 == 'rfc822')) {
41b94d65 931 if ( !in_array($message->entity_id, $entities) && $message->entity_id) {
73ad81bf 932 switch ($message->type0) {
933 case 'message':
934 if ($message->type1 == 'rfc822') {
935 $filename = $message->rfc822_header->subject;
936 if ($filename == "") {
937 $filename = "untitled-".$message->entity_id;
938 }
939 $filename .= '.msg';
940 } else {
941 $filename = $message->getFilename();
181538ac 942 }
73ad81bf 943 break;
944 default:
945 if (!$message->mime_header) { /* temporary hack */
946 $message->mime_header = $message->header;
947 }
948 $filename = $message->getFilename();
949 break;
950 }
951 $filename = str_replace('&#32;', ' ', decodeHeader($filename));
952 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
953 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode')) {
f4bb5d22 954 $filename = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode', $filename);
73ad81bf 955 }
956 $localfilename = GenerateRandomString(32, '', 7);
957 $full_localfilename = "$hashed_attachment_dir/$localfilename";
958 while (file_exists($full_localfilename)) {
959 $localfilename = GenerateRandomString(32, '', 7);
960 $full_localfilename = "$hashed_attachment_dir/$localfilename";
961 }
962 $message->att_local_name = $full_localfilename;
963
964 $composeMessage->initAttachment($message->type0.'/'.$message->type1,$filename,
965 $full_localfilename);
966
967 /* Write Attachment to file */
968 $fp = fopen ("$hashed_attachment_dir/$localfilename", 'wb');
91c27aee 969 mime_print_body_lines ($imapConnection, $passed_id, $message->entity_id, $message->header->encoding, $fp);
73ad81bf 970 fclose ($fp);
48985d59 971 }
734f4ee6 972 } else {
a43e4b90 973 for ($i=0, $entCount=count($message->entities); $i<$entCount;$i++) {
974 $composeMessage=getAttachments($message->entities[$i], $composeMessage, $passed_id, $entities, $imapConnection);
48985d59 975 }
976 }
a43e4b90 977 return $composeMessage;
48985d59 978}
979
1c044820 980function getMessage_RFC822_Attachment($message, $composeMessage, $passed_id,
73ad81bf 981 $passed_ent_id='', $imapConnection) {
ce68b76b 982 global $attachment_dir, $username, $data_dir;
a6ec592e 983 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
756406df 984 if (!$passed_ent_id) {
1c044820 985 $body_a = sqimap_run_command($imapConnection,
73ad81bf 986 'FETCH '.$passed_id.' RFC822',
987 TRUE, $response, $readmessage,
988 TRUE);
756406df 989 } else {
1c044820 990 $body_a = sqimap_run_command($imapConnection,
73ad81bf 991 'FETCH '.$passed_id.' BODY['.$passed_ent_id.']',
992 TRUE, $response, $readmessage, TRUE);
a61878d0 993 $message = $message->parent;
756406df 994 }
d0519c03 995 if ($response == 'OK') {
a61878d0 996 $subject = encodeHeader($message->rfc822_header->subject);
997 array_shift($body_a);
1c044820 998 array_pop($body_a);
a61878d0 999 $body = implode('', $body_a) . "\r\n";
1c044820 1000
a61878d0 1001 $localfilename = GenerateRandomString(32, 'FILE', 7);
1002 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1c044820 1003
1004 $fp = fopen($full_localfilename, 'w');
a61878d0 1005 fwrite ($fp, $body);
1006 fclose($fp);
5a1f1da3 1007 $composeMessage->initAttachment('message/rfc822',$subject.'.msg',
73ad81bf 1008 $full_localfilename);
a43e4b90 1009 }
1010 return $composeMessage;
a6ec592e 1011}
1012
41b94d65 1013function showInputForm ($session, $values=false) {
ce68b76b 1014 global $send_to, $send_to_cc, $body, $startMessage, $action,
1015 $color, $use_signature, $signature, $prefix_sig,
8d8da447 1016 $editor_size, $editor_height, $subject, $newmail,
73ad81bf 1017 $use_javascript_addr_book, $send_to_bcc, $passed_id, $mailbox,
1018 $from_htmladdr_search, $location_of_buttons, $attachment_dir,
ce68b76b 1019 $username, $data_dir, $identity, $idents, $delete_draft,
1020 $mailprio, $compose_new_win, $saved_draft, $mail_sent, $sig_first,
73ad81bf 1021 $username, $compose_messages, $composesession, $default_charset;
a43e4b90 1022
1023 $composeMessage = $compose_messages[$session];
41b94d65 1024 if ($values) {
73ad81bf 1025 $send_to = $values['send_to'];
1026 $send_to_cc = $values['send_to_cc'];
1027 $send_to_bcc = $values['send_to_bcc'];
1028 $subject = $values['subject'];
1029 $mailprio = $values['mailprio'];
1030 $body = $values['body'];
1031 $identity = (int) $values['identity'];
676bb189 1032 } else {
73ad81bf 1033 $send_to = decodeHeader($send_to, true, false);
1034 $send_to_cc = decodeHeader($send_to_cc, true, false);
1035 $send_to_bcc = decodeHeader($send_to_bcc, true, false);
41b94d65 1036 }
1c044820 1037
48985d59 1038 if ($use_javascript_addr_book) {
39bfea8f 1039 echo "\n". '<script language="JavaScript">'."\n<!--\n" .
73ad81bf 1040 'function open_abook() { ' . "\n" .
1041 ' var nwin = window.open("addrbook_popup.php","abookpopup",' .
1042 '"width=670,height=300,resizable=yes,scrollbars=yes");' . "\n" .
1043 ' if((!nwin.opener) && (document.windows != null))' . "\n" .
1044 ' nwin.opener = document.windows;' . "\n" .
1045 "}\n" .
1046 "// -->\n</script>\n\n";
48985d59 1047 }
1048
4a1788b3 1049 echo "\n" . '<form name="compose" action="compose.php" method="post" ' .
73ad81bf 1050 'enctype="multipart/form-data"';
4a1788b3 1051 do_hook('compose_form');
1c044820 1052
48985d59 1053 echo ">\n";
1054
df96b37a 1055 echo addHidden('startMessage', $startMessage);
4a1788b3 1056
41b94d65 1057 if ($action == 'draft') {
df96b37a 1058 echo addHidden('delete_draft', $passed_id);
48985d59 1059 }
1060 if (isset($delete_draft)) {
df96b37a 1061 echo addHidden('delete_draft', $delete_draft);
48985d59 1062 }
da95c4b6 1063 if (isset($session)) {
df96b37a 1064 echo addHidden('session', $session);
da95c4b6 1065 }
1c044820 1066
08bad2b1 1067 if (isset($passed_id)) {
df96b37a 1068 echo addHidden('passed_id', $passed_id);
08bad2b1 1069 }
44560457 1070
9c3e6cd4 1071 if ($saved_draft == 'yes') {
39bfea8f 1072 echo '<br /><center><b>'. _("Draft Saved").'</center></b>';
9c3e6cd4 1073 }
1074 if ($mail_sent == 'yes') {
39bfea8f 1075 echo '<br /><center><b>'. _("Your Message has been sent.").'</center></b>';
9c3e6cd4 1076 }
9c3e6cd4 1077 if ($compose_new_win == '1') {
39bfea8f 1078 echo '<table align="center" bgcolor="'.$color[0].'" width="100%" border="0">'."\n" .
73ad81bf 1079 ' <tr><td></td>'.html_tag( 'td', '', 'right' ).
6fc2ba92 1080 '<input type="button" name="Close" onclick="return self.close()" value="'.
73ad81bf 1081 _("Close").'" /></td></tr>'."\n";
bfa54da7 1082 } else {
1083 echo '<table align="center" cellspacing="0" border="0">' . "\n";
9c3e6cd4 1084 }
78a35fcd 1085 if ($location_of_buttons == 'top') {
1086 showComposeButtonRow();
1087 }
48985d59 1088
0f257091 1089 /* display select list for identities */
1e2a6ff6 1090 if (count($idents) > 1) {
73ad81bf 1091 $ident_list = array();
1092 foreach($idents as $id => $data) {
1093 $ident_list[$id] =
1094 $data['full_name'].' <'.$data['email_address'].'>';
1095 }
0f257091 1096 echo ' <tr>' . "\n" .
73ad81bf 1097 html_tag( 'td', '', 'right', $color[4], 'width="10%"' ) .
1098 _("From:") . '</td>' . "\n" .
1099 html_tag( 'td', '', 'left', $color[4], 'width="90%"' ) .
1100 ' '.
1101 addSelect('identity', $ident_list, $identity, TRUE);
1e2a6ff6 1102
df96b37a 1103 echo ' </td>' . "\n" .
73ad81bf 1104 ' </tr>' . "\n";
41b94d65 1105 }
46f2284f 1106
0f257091 1107 echo ' <tr>' . "\n" .
73ad81bf 1108 html_tag( 'td', '', 'right', $color[4], 'width="10%"' ) .
1109 _("To") . ':</td>' . "\n" .
1110 html_tag( 'td', '', 'left', $color[4], 'width="90%"' ) .
1111 addInput('send_to', $send_to, 60). '<br />' . "\n" .
1112 ' </td>' . "\n" .
1113 ' </tr>' . "\n" .
1114 ' <tr>' . "\n" .
1115 html_tag( 'td', '', 'right', $color[4] ) .
1116 _("Cc") . ':</td>' . "\n" .
1117 html_tag( 'td', '', 'left', $color[4] ) .
1118 addInput('send_to_cc', $send_to_cc, 60). '<br />' . "\n" .
1119 ' </td>' . "\n" .
1120 ' </tr>' . "\n" .
1121 ' <tr>' . "\n" .
1122 html_tag( 'td', '', 'right', $color[4] ) .
1123 _("Bcc") . ':</td>' . "\n" .
1124 html_tag( 'td', '', 'left', $color[4] ) .
1125 addInput('send_to_bcc', $send_to_bcc, 60).'<br />' . "\n" .
1126 ' </td>' . "\n" .
1127 ' </tr>' . "\n" .
1128 ' <tr>' . "\n" .
1129 html_tag( 'td', '', 'right', $color[4] ) .
1130 _("Subject") . ':</td>' . "\n" .
1131 html_tag( 'td', '', 'left', $color[4] ) . "\n";
df96b37a 1132 echo ' '.addInput('subject', $subject, 60).
73ad81bf 1133 ' </td>' . "\n" .
1134 ' </tr>' . "\n\n";
48985d59 1135
78a35fcd 1136 if ($location_of_buttons == 'between') {
1137 showComposeButtonRow();
1138 }
4dfb9db7 1139
0f257091 1140 /* why this distinction? */
fdc83c55 1141 if ($compose_new_win == '1') {
39bfea8f 1142 echo ' <tr>' . "\n" .
73ad81bf 1143 ' <td bgcolor="' . $color[0] . '" colspan="2" align="center">' . "\n" .
1144 ' <textarea name="body" id="body" rows="' . (int)$editor_height .
1145 '" cols="' . (int)$editor_size . '" wrap="virtual">';
fdc83c55 1146 }
1147 else {
39bfea8f 1148 echo ' <tr>' . "\n" .
1149 ' <td bgcolor="' . $color[4] . '" colspan="2">' . "\n" .
1150 ' &nbsp;&nbsp;<textarea name="body" id="body" rows="' . (int)$editor_height .
1151 '" cols="' . (int)$editor_size . '" wrap="virtual">';
fdc83c55 1152 }
0f257091 1153
48985d59 1154 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
1e2a6ff6 1155 $signature = $idents[$identity]['signature'];
d3c13a51 1156
3b17e952 1157 if ($sig_first == '1') {
50706f77 1158 /*
1159 * FIXME: test is specific to ja_JP translation implementation.
1160 * This test might apply incorrect conversion to other translations, but
91c27aee 1161 * use of 7bit iso-2022-jp charset in other translations might have other
50706f77 1162 * issues too.
1163 */
ab4700c3 1164 if ($default_charset == 'iso-2022-jp') {
83be314a 1165 echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
1166 } else {
73ad81bf 1167 echo "\n\n".($prefix_sig==true? "-- \n":'').decodeHeader($signature,false,false);
83be314a 1168 }
df96b37a 1169 echo "\n\n".htmlspecialchars(decodeHeader($body,false,false));
3b17e952 1170 }
1171 else {
df96b37a 1172 echo "\n\n".htmlspecialchars(decodeHeader($body,false,false));
50706f77 1173 // FIXME: test is specific to ja_JP translation implementation. See above comments.
ab4700c3 1174 if ($default_charset == 'iso-2022-jp') {
83be314a 1175 echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
1176 }else{
73ad81bf 1177 echo "\n\n".($prefix_sig==true? "-- \n":'').decodeHeader($signature,false,false);
1178 }
3b17e952 1179 }
73ad81bf 1180 } else {
1181 echo htmlspecialchars(decodeHeader($body,false,false));
48985d59 1182 }
0f257091 1183 echo '</textarea><br />' . "\n" .
73ad81bf 1184 ' </td>' . "\n" .
1185 ' </tr>' . "\n";
48985d59 1186
12a0ed01 1187
48985d59 1188 if ($location_of_buttons == 'bottom') {
1189 showComposeButtonRow();
1190 } else {
0f257091 1191 echo ' <tr>' . "\n" .
73ad81bf 1192 html_tag( 'td', '', 'right', '', 'colspan="2"' ) . "\n" .
1193 ' ' . addSubmit(_("Send"), 'send').
1194 ' &nbsp;&nbsp;&nbsp;&nbsp;<br /><br />' . "\n" .
1195 ' </td>' . "\n" .
1196 ' </tr>' . "\n";
48985d59 1197 }
46bb8da8 1198
48985d59 1199 /* This code is for attachments */
73ad81bf 1200 if ((bool) ini_get('file_uploads')) {
1201
1202 /* Calculate the max size for an uploaded file.
1203 * This is advisory for the user because we can't actually prevent
1204 * people to upload too large files. */
1205 $sizes = array();
1206 /* php.ini vars which influence the max for uploads */
1207 $configvars = array('post_max_size', 'memory_limit', 'upload_max_filesize');
1208 foreach($configvars as $var) {
4f21ba00 1209 /* skip 0 or empty values, and -1 which means 'unlimited' */
73ad81bf 1210 if( $size = getByteSize(ini_get($var)) ) {
4f21ba00 1211 if ( $size != '-1' ) {
1212 $sizes[] = $size;
1213 }
73ad81bf 1214 }
0a2c3218 1215 }
0a2c3218 1216
73ad81bf 1217 if(count($sizes) > 0) {
1218 $maxsize = '(max.&nbsp;' . show_readable_size( min( $sizes ) ) . ')';
4f21ba00 1219 echo addHidden('MAX_FILE_SIZE', min( $sizes ));
73ad81bf 1220 } else {
1221 $maxsize = '';
1222 }
4f21ba00 1223 echo ' <tr>' . "\n" .
73ad81bf 1224 ' <td colspan="2">' . "\n" .
1225 ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.
1226 ' border="0" bgcolor="'.$color[9].'">' . "\n" .
1227 ' <tr>' . "\n" .
1228 ' <td>' . "\n" .
1229 ' <table width="100%" cellpadding="3" cellspacing="0" align="center"'.
1230 ' border="0">' . "\n" .
1231 ' <tr>' . "\n" .
1232 html_tag( 'td', '', 'right', '', 'valign="middle"' ) .
1233 _("Attach:") . '</td>' . "\n" .
1234 html_tag( 'td', '', 'left', '', 'valign="middle"' ) .
1235 ' <input name="attachfile" size="48" type="file" />' . "\n" .
1236 ' &nbsp;&nbsp;<input type="submit" name="attach"' .
1237 ' value="' . _("Add") .'" />' . "\n" .
1238 $maxsize .
1239 ' </td>' . "\n" .
1240 ' </tr>' . "\n";
1241
1242 $s_a = array();
1243 if ($composeMessage->entities) {
1244 foreach ($composeMessage->entities as $key => $attachment) {
1245 $attached_file = $attachment->att_local_name;
1246 if ($attachment->att_local_name || $attachment->body_part) {
1247 $attached_filename = decodeHeader($attachment->mime_header->getParameter('name'));
1248 $type = $attachment->mime_header->type0.'/'.
a91189d6 1249 $attachment->mime_header->type1;
1c044820 1250
73ad81bf 1251 $s_a[] = '<table bgcolor="'.$color[0].
1252 '" border="0"><tr><td>'.
1253 addCheckBox('delete[]', FALSE, $key).
1254 "</td><td>\n" . $attached_filename .
1255 '</td><td>-</td><td> ' . $type . '</td><td>('.
1256 show_readable_size( filesize( $attached_file ) ) . ')</td></tr></table>'."\n";
1257 }
1258 }
4dfb9db7 1259 }
73ad81bf 1260 if (count($s_a)) {
1261 foreach ($s_a as $s) {
1262 echo '<tr>' . html_tag( 'td', '', 'left', $color[0], 'colspan="2"' ) . $s .'</td></tr>';
1263 }
1264 echo '<tr><td colspan="2"><input type="submit" name="do_delete" value="' .
1265 _("Delete selected attachments") . "\" />\n" .
1266 '</td></tr>';
1267 }
1268 echo ' </table>' . "\n" .
1269 ' </td>' . "\n" .
1270 ' </tr>' . "\n" .
1271 ' </table>' . "\n" .
1272 ' </td>' . "\n" .
1273 ' </tr>' . "\n";
1274 } // End of file_uploads if-block
41b94d65 1275 /* End of attachment code */
39bfea8f 1276 echo '</table>' . "\n" .
0fa24cb6 1277 addHidden('username', $username).
1278 addHidden('smaction', $action).
1279 addHidden('mailbox', $mailbox);
1c044820 1280 /*
1281 store the complete ComposeMessages array in a hidden input value
0ec1a14b 1282 so we can restore them in case of a session timeout.
73ad81bf 1283 */
953fa718 1284 sqgetGlobalVar('QUERY_STRING', $queryString, SQ_SERVER);
df96b37a 1285 echo addHidden('restoremessages', serialize($compose_messages)).
73ad81bf 1286 addHidden('composesession', $composesession).
1287 addHidden('querystring', $queryString).
1288 "</form>\n";
a64f47e7 1289 if (!(bool) ini_get('file_uploads')) {
73ad81bf 1290 /* File uploads are off, so we didn't show that part of the form.
1291 To avoid bogus bug reports, tell the user why. */
50706f77 1292 echo '<p style="text-align:center">'
1293 . _("Because PHP file uploads are turned off, you can not attach files to this message. Please see your system administrator for details.")
1294 . "</p>\r\n";
a64f47e7 1295 }
1296
9f599fe3 1297 do_hook('compose_bottom');
39bfea8f 1298 echo '</body></html>' . "\n";
48985d59 1299}
1300
1301
70c4fd84 1302function showComposeButtonRow() {
78a35fcd 1303 global $use_javascript_addr_book, $save_as_draft,
73ad81bf 1304 $default_use_priority, $mailprio, $default_use_mdn,
1305 $request_mdn, $request_dr,
1306 $data_dir, $username;
70c4fd84 1307
39bfea8f 1308 echo ' <tr>' . "\n" .
73ad81bf 1309 ' <td></td>' . "\n" .
1310 ' <td>' . "\n";
ae25968c 1311 if ($default_use_priority) {
1312 if(!isset($mailprio)) {
df96b37a 1313 $mailprio = '3';
1314 }
1315 echo ' ' . _("Priority") .
73ad81bf 1316 addSelect('mailprio', array(
1317 '1' => _("High"),
1318 '3' => _("Normal"),
1319 '5' => _("Low") ), $mailprio, TRUE);
ae25968c 1320 }
1321 $mdn_user_support=getPref($data_dir, $username, 'mdn_user_support',$default_use_mdn);
1322 if ($default_use_mdn) {
70c4fd84 1323 if ($mdn_user_support) {
0ec1a14b 1324 echo ' ' . _("Receipt") .': '.
73ad81bf 1325 addCheckBox('request_mdn', $request_mdn == '1', '1'). _("On Read").
1326 addCheckBox('request_dr', $request_dr == '1', '1'). _("On Delivery");
70c4fd84 1327 }
ae25968c 1328 }
48985d59 1329
39bfea8f 1330 echo ' </td>' . "\n" .
73ad81bf 1331 ' </tr>' . "\n" .
1332 ' <tr>' . "\n" .
1333 ' <td></td>' . "\n" .
1334 ' <td>' . "\n" .
1335 ' <input type="submit" name="sigappend" value="' . _("Signature") . '" />' . "\n";
78a35fcd 1336 if ($use_javascript_addr_book) {
39bfea8f 1337 echo " <script language=\"JavaScript\"><!--\n document.write(\"".
73ad81bf 1338 " <input type=button value=\\\""._("Addresses").
1339 "\\\" onclick=\\\"javascript:open_abook();\\\" />\");".
1340 " // --></script><noscript>\n".
1341 ' <input type="submit" name="html_addr_search" value="'.
1342 _("Addresses").'" />'.
1343 " </noscript>\n";
734f4ee6 1344 } else {
39bfea8f 1345 echo ' <input type="submit" name="html_addr_search" value="'.
73ad81bf 1346 _("Addresses").'" />' . "\n";
78a35fcd 1347 }
48985d59 1348
78a35fcd 1349 if ($save_as_draft) {
39bfea8f 1350 echo ' <input type="submit" name ="draft" value="' . _("Save Draft") . "\" />\n";
78a35fcd 1351 }
0a17f9dd 1352
39bfea8f 1353 echo ' <input type="submit" name="send" value="'. _("Send") . '" />' . "\n";
78a35fcd 1354 do_hook('compose_button_row');
441f2d33 1355
39bfea8f 1356 echo ' </td>' . "\n" .
73ad81bf 1357 ' </tr>' . "\n\n";
78a35fcd 1358}
b278172f 1359
70c4fd84 1360function checkInput ($show) {
78a35fcd 1361 /*
1362 * I implemented the $show variable because the error messages
1363 * were getting sent before the page header. So, I check once
1364 * using $show=false, and then when i'm ready to display the error
1365 * message, show=true
1366 */
6bf2a88f 1367 global $body, $send_to, $send_to_bcc, $subject, $color;
78a35fcd 1368
6bf2a88f 1369 if ($send_to == '' && $send_to_bcc == '') {
78a35fcd 1370 if ($show) {
0ad7dbda 1371 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
78a35fcd 1372 }
1373 return false;
1374 }
1375 return true;
1376} /* function checkInput() */
df15de21 1377
3806fa52 1378
00793a25 1379/* True if FAILURE */
da95c4b6 1380function saveAttachedFiles($session) {
0b97a708 1381 global $_FILES, $attachment_dir, $attachments, $username,
73ad81bf 1382 $data_dir, $compose_messages;
bfa54da7 1383
45cdd1b5 1384 /* get out of here if no file was attached at all */
1385 if (! is_uploaded_file($_FILES['attachfile']['tmp_name']) ) {
1386 return true;
1387 }
1388
4c9d2242 1389 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
1390 $localfilename = GenerateRandomString(32, '', 7);
1391 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1392 while (file_exists($full_localfilename)) {
1393 $localfilename = GenerateRandomString(32, '', 7);
1394 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1395 }
1396
e6675f9a 1397 // FIXME: we SHOULD prefer move_uploaded_file over rename because
50706f77 1398 // m_u_f works better with restricted PHP installs (safe_mode, open_basedir)
e6675f9a 1399 if (!@rename($_FILES['attachfile']['tmp_name'], $full_localfilename)) {
73ad81bf 1400 if (!@move_uploaded_file($_FILES['attachfile']['tmp_name'],$full_localfilename)) {
1401 return true;
1402 }
a61878d0 1403 }
a43e4b90 1404 $message = $compose_messages[$session];
0b97a708 1405 $type = strtolower($_FILES['attachfile']['type']);
1406 $name = $_FILES['attachfile']['name'];
a43e4b90 1407 $message->initAttachment($type, $name, $full_localfilename);
1408 $compose_messages[$session] = $message;
b0314f04 1409 sqsession_register($compose_messages , 'compose_messages');
4c9d2242 1410}
1411
a43e4b90 1412function ClearAttachments($composeMessage) {
b48d3c53 1413 if ($composeMessage->att_local_name) {
1414 $attached_file = $composeMessage->att_local_name;
a43e4b90 1415 if (file_exists($attached_file)) {
1416 unlink($attached_file);
8712abea 1417 }
da95c4b6 1418 }
a43e4b90 1419 for ($i=0, $entCount=count($composeMessage->entities);$i< $entCount; ++$i) {
1420 ClearAttachments($composeMessage->entities[$i]);
1421 }
4c9d2242 1422}
1423
0a2c3218 1424/* parse values like 8M and 2k into bytes */
1425function getByteSize($ini_size) {
1426
4d30dc83 1427 if(!$ini_size) {
1428 return FALSE;
1429 }
da95c4b6 1430
0a2c3218 1431 $ini_size = trim($ini_size);
1432
5b9716de 1433 // if there's some kind of letter at the end of the string we need to multiply.
1434 if(!is_numeric(substr($ini_size, -1))) {
1435
1436 switch(strtoupper(substr($ini_size, -1))) {
1437 case 'G':
73ad81bf 1438 $bytesize = 1073741824;
1439 break;
5b9716de 1440 case 'M':
73ad81bf 1441 $bytesize = 1048576;
1442 break;
5b9716de 1443 case 'K':
73ad81bf 1444 $bytesize = 1024;
1445 break;
5b9716de 1446 }
1447
4d30dc83 1448 return ($bytesize * (int)substr($ini_size, 0, -1));
0a2c3218 1449 }
1c044820 1450
4d30dc83 1451 return $ini_size;
0a2c3218 1452}
a43e4b90 1453
4c9d2242 1454
50706f77 1455/**
1456 * temporary function to make use of the deliver class.
1457 * In the future the responsable backend should be automaticly loaded
1458 * and conf.pl should show a list of available backends.
1459 * The message also should be constructed by the message class.
73ad81bf 1460 */
b7ff469f 1461function deliverMessage($composeMessage, $draft=false) {
a43e4b90 1462 global $send_to, $send_to_cc, $send_to_bcc, $mailprio, $subject, $body,
73ad81bf 1463 $username, $popuser, $usernamedata, $identity, $idents, $data_dir,
1464 $request_mdn, $request_dr, $default_charset, $color, $useSendmail,
1465 $domain, $action, $default_move_to_sent, $move_to_sent;
a43e4b90 1466 global $imapServerAddress, $imapPort, $sent_folder, $key;
1467
1468 $rfc822_header = $composeMessage->rfc822_header;
24192f77 1469
1470 $abook = addressbook_init(false, true);
310dfeb6 1471 $rfc822_header->to = $rfc822_header->parseAddress($send_to,true, array(), '', $domain, array(&$abook,'lookup'));
1472 $rfc822_header->cc = $rfc822_header->parseAddress($send_to_cc,true,array(), '',$domain, array(&$abook,'lookup'));
1473 $rfc822_header->bcc = $rfc822_header->parseAddress($send_to_bcc,true, array(), '',$domain, array(&$abook,'lookup'));
a43e4b90 1474 $rfc822_header->priority = $mailprio;
1475 $rfc822_header->subject = $subject;
310dfeb6 1476
a43e4b90 1477 $special_encoding='';
1478 if (strtolower($default_charset) == 'iso-2022-jp') {
1479 if (mb_detect_encoding($body) == 'ASCII') {
a91189d6 1480 $special_encoding = '8bit';
a43e4b90 1481 } else {
1482 $body = mb_convert_encoding($body, 'JIS');
1483 $special_encoding = '7bit';
1484 }
1485 }
1486 $composeMessage->setBody($body);
1487
1488 if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
73ad81bf 1489 $popuser = $usernamedata[1];
1490 $domain = $usernamedata[2];
1491 unset($usernamedata);
a43e4b90 1492 } else {
73ad81bf 1493 $popuser = $username;
a43e4b90 1494 }
1495 $reply_to = '';
1e2a6ff6 1496 $from_mail = $idents[$identity]['email_address'];
1497 $full_name = $idents[$identity]['full_name'];
1498 $reply_to = $idents[$identity]['reply_to'];
9ca455db 1499 if (!$from_mail) {
73ad81bf 1500 $from_mail = "$popuser@$domain";
045714fd 1501 }
1502 $rfc822_header->from = $rfc822_header->parseAddress($from_mail,true);
1503 if ($full_name) {
9783f396 1504 $from = $rfc822_header->from[0];
a91189d6 1505 if (!$from->host) $from->host = $domain;
12a0ed01 1506 $full_name_encoded = encodeHeader($full_name);
1507 if ($full_name_encoded != $full_name) {
1508 $from_addr = $full_name_encoded .' <'.$from->mailbox.'@'.$from->host.'>';
1509 } else {
1510 $from_addr = '"'.$full_name .'" <'.$from->mailbox.'@'.$from->host.'>';
1511 }
045714fd 1512 $rfc822_header->from = $rfc822_header->parseAddress($from_addr,true);
a43e4b90 1513 }
a43e4b90 1514 if ($reply_to) {
73ad81bf 1515 $rfc822_header->reply_to = $rfc822_header->parseAddress($reply_to,true);
a43e4b90 1516 }
1517 /* Receipt: On Read */
1518 if (isset($request_mdn) && $request_mdn) {
73ad81bf 1519 $rfc822_header->dnt = $rfc822_header->parseAddress($from_mail,true);
a43e4b90 1520 }
1521 /* Receipt: On Delivery */
1522 if (isset($request_dr) && $request_dr) {
73ad81bf 1523 $rfc822_header->more_headers['Return-Receipt-To'] = $from_mail;
a43e4b90 1524 }
1525 /* multipart messages */
1526 if (count($composeMessage->entities)) {
1527 $message_body = new Message();
a91189d6 1528 $message_body->body_part = $composeMessage->body_part;
1529 $composeMessage->body_part = '';
1530 $mime_header = new MessageHeader;
1531 $mime_header->type0 = 'text';
1532 $mime_header->type1 = 'plain';
1533 if ($special_encoding) {
1534 $mime_header->encoding = $special_encoding;
1c044820 1535 } else {
12a0ed01 1536 $mime_header->encoding = '8bit';
a91189d6 1537 }
1538 if ($default_charset) {
1539 $mime_header->parameters['charset'] = $default_charset;
1540 }
1c044820 1541 $message_body->mime_header = $mime_header;
a43e4b90 1542 array_unshift($composeMessage->entities, $message_body);
a91189d6 1543 $content_type = new ContentType('multipart/mixed');
a43e4b90 1544 } else {
1e2026df 1545 $content_type = new ContentType('text/plain');
1546 if ($special_encoding) {
1547 $rfc822_header->encoding = $special_encoding;
1c044820 1548 } else {
1e2026df 1549 $rfc822_header->encoding = '8bit';
1c044820 1550 }
426e0b72 1551 if ($default_charset) {
1552 $content_type->properties['charset']=$default_charset;
73ad81bf 1553 }
181538ac 1554 }
1c044820 1555
a43e4b90 1556 $rfc822_header->content_type = $content_type;
1557 $composeMessage->rfc822_header = $rfc822_header;
181538ac 1558
1c044820 1559 /* Here you can modify the message structure just before we hand
5618924b 1560 it over to deliver */
5255585d 1561 $hookReturn = do_hook('compose_send', $composeMessage);
1562 /* Get any changes made by plugins to $composeMessage. */
1563 if ( is_object($hookReturn[1]) ) {
1564 $composeMessage = $hookReturn[1];
1565 }
a43e4b90 1566
b48d3c53 1567 if (!$useSendmail && !$draft) {
a91189d6 1568 require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php');
1569 $deliver = new Deliver_SMTP();
ce68b76b 1570 global $smtpServerAddress, $smtpPort, $pop_before_smtp;
a91189d6 1571
a91189d6 1572 $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false;
9bd3b1e6 1573 get_smtp_user($user, $pass);
a91189d6 1574 $stream = $deliver->initStream($composeMessage,$domain,0,
73ad81bf 1575 $smtpServerAddress, $smtpPort, $user, $pass, $authPop);
b48d3c53 1576 } elseif (!$draft) {
73ad81bf 1577 require_once(SM_PATH . 'class/deliver/Deliver_SendMail.class.php');
1578 global $sendmail_path;
1579 $deliver = new Deliver_SendMail();
1580 $stream = $deliver->initStream($composeMessage,$sendmail_path);
b48d3c53 1581 } elseif ($draft) {
73ad81bf 1582 global $draft_folder;
1583 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1584 $imap_stream = sqimap_login($username, $key, $imapServerAddress,
1585 $imapPort, 0);
1586 if (sqimap_mailbox_exists ($imap_stream, $draft_folder)) {
1587 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1588 $imap_deliver = new Deliver_IMAP();
1589 $length = $imap_deliver->mail($composeMessage);
1590 sqimap_append ($imap_stream, $draft_folder, $length);
1591 $imap_deliver->mail($composeMessage, $imap_stream);
1592 sqimap_append_done ($imap_stream, $draft_folder);
1593 sqimap_logout($imap_stream);
1594 unset ($imap_deliver);
1595 return $length;
4dfb9db7 1596 } else {
73ad81bf 1597 $msg = '<br />'.sprintf(_("Error: Draft folder %s does not exist."), $draft_folder);
1598 plain_error_message($msg, $color);
1599 return false;
a91189d6 1600 }
a43e4b90 1601 }
1602 $succes = false;
1603 if ($stream) {
a91189d6 1604 $length = $deliver->mail($composeMessage, $stream);
1605 $succes = $deliver->finalizeStream($stream);
a43e4b90 1606 }
1607 if (!$succes) {
46f2284f 1608 $msg = $deliver->dlv_msg . '<br />' .
0e1a248b 1609 _("Server replied:") . ' ' . $deliver->dlv_ret_nr . ' ' .
73ad81bf 1610 $deliver->dlv_server_msg;
a43e4b90 1611 plain_error_message($msg, $color);
1612 } else {
1613 unset ($deliver);
20152d80 1614 $move_to_sent = getPref($data_dir,$username,'move_to_sent');
1615 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
e4a1f097 1616
1617 /* Move to sent code */
1618 if (isset($default_move_to_sent) && ($default_move_to_sent != 0)) {
1619 $svr_allow_sent = true;
1620 } else {
1621 $svr_allow_sent = false;
1622 }
1623
1c044820 1624 if (isset($sent_folder) && (($sent_folder != '') || ($sent_folder != 'none'))
73ad81bf 1625 && sqimap_mailbox_exists( $imap_stream, $sent_folder)) {
e4a1f097 1626 $fld_sent = true;
1627 } else {
1628 $fld_sent = false;
1629 }
1630
1631 if ((isset($move_to_sent) && ($move_to_sent != 0)) || (!isset($move_to_sent))) {
1632 $lcl_allow_sent = true;
1633 } else {
1634 $lcl_allow_sent = false;
1635 }
1636
1637 if (($fld_sent && $svr_allow_sent && !$lcl_allow_sent) || ($fld_sent && $lcl_allow_sent)) {
eceefdfe 1638 global $passed_id, $mailbox, $action;
1639 if ($action == 'reply' || $action == 'reply_all') {
1640 $save_reply_with_orig=getPref($data_dir,$username,'save_reply_with_orig');
1641 if ($save_reply_with_orig) {
1642 $sent_folder = $mailbox;
1643 }
1644 }
e4a1f097 1645 sqimap_append ($imap_stream, $sent_folder, $length);
a91189d6 1646 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1647 $imap_deliver = new Deliver_IMAP();
1648 $imap_deliver->mail($composeMessage, $imap_stream);
e4a1f097 1649 sqimap_append_done ($imap_stream, $sent_folder);
a91189d6 1650 unset ($imap_deliver);
1651 }
1652 global $passed_id, $mailbox, $action;
1653 ClearAttachments($composeMessage);
1654 if ($action == 'reply' || $action == 'reply_all') {
1655 sqimap_mailbox_select ($imap_stream, $mailbox);
91c27aee 1656 sqimap_toggle_flag($imap_stream, array($passed_id), '\\Answered', true, false);
a91189d6 1657 }
73ad81bf 1658 sqimap_logout($imap_stream);
a43e4b90 1659 }
1660 return $succes;
1661}
1662
a2b193bc 1663?>