typo.
[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
73ad81bf 737 if (isset($body_part_entity->header->parameters['charset'])) {
738 $actual = $body_part_entity->header->parameters['charset'];
739 } else {
740 $actual = 'us-ascii';
741 }
beca818e 742
73ad81bf 743 if ( $actual && is_conversion_safe($actual) && $actual != $default_charset){
744 $bodypart = charset_convert($actual,$bodypart,$default_charset,false);
745 }
eceefdfe 746
a61878d0 747 $body .= $bodypart;
748 }
749 if ($default_use_priority) {
750 $mailprio = substr($orig_header->priority,0,1);
751 if (!$mailprio) {
752 $mailprio = 3;
753 }
754 } else {
755 $mailprio = '';
756 }
a43e4b90 757 //ClearAttachments($session);
bdb92db3 758
759 $identity = '';
a45887d7 760 $from_o = $orig_header->from;
fe868193 761 if (is_array($from_o)) {
762 if (isset($from_o[0])) {
763 $from_o = $from_o[0];
764 }
765 }
bdb92db3 766 if (is_object($from_o)) {
767 $orig_from = $from_o->getAddress();
768 } else {
769 $orig_from = '';
a61878d0 770 }
1e2a6ff6 771
a91189d6 772 $identities = array();
1e2a6ff6 773 if (count($idents) > 1) {
774 foreach($idents as $nr=>$data) {
775 $enc_from_name = '"'.$data['full_name'].'" <'. $data['email_address'].'>';
776 if($enc_from_name == $orig_from) {
777 $identity = $nr;
a61878d0 778 break;
779 }
a91189d6 780 $identities[] = $enc_from_name;
781 }
1e2a6ff6 782
a91189d6 783 $identity_match = $orig_header->findAddress($identities);
784 if ($identity_match) {
785 $identity = $identity_match;
a61878d0 786 }
bdb92db3 787 }
a61878d0 788
789 switch ($action) {
73ad81bf 790 case ('draft'):
791 $use_signature = FALSE;
792 $composeMessage->rfc822_header = $orig_header;
793 $send_to = decodeHeader($orig_header->getAddr_s('to'),false,false,true);
794 $send_to_cc = decodeHeader($orig_header->getAddr_s('cc'),false,false,true);
795 $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'),false,false,true);
796 $send_from = $orig_header->getAddr_s('from');
797 $send_from_parts = new AddressStructure();
798 $send_from_parts = $orig_header->parseAddress($send_from);
799 $send_from_add = $send_from_parts->mailbox . '@' . $send_from_parts->host;
800 $identities = get_identities();
801 if (count($identities) > 0) {
802 foreach($identities as $iddata) {
803 if ($send_from_add == $iddata['email_address']) {
804 $identity = $iddata['index'];
805 break;
806 }
a656569f 807 }
808 }
73ad81bf 809 $subject = decodeHeader($orig_header->subject,false,false,true);
810 /* remember the references and in-reply-to headers in case of an reply */
811 $composeMessage->rfc822_header->more_headers['References'] = $orig_header->references;
812 $composeMessage->rfc822_header->more_headers['In-Reply-To'] = $orig_header->in_reply_to;
813 // rewrap the body to clean up quotations and line lengths
814 sqBodyWrap($body, $editor_size);
815 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
816 break;
817 case ('edit_as_new'):
818 $send_to = decodeHeader($orig_header->getAddr_s('to'),false,false,true);
819 $send_to_cc = decodeHeader($orig_header->getAddr_s('cc'),false,false,true);
820 $send_to_bcc = decodeHeader($orig_header->getAddr_s('bcc'),false,false,true);
821 $subject = decodeHeader($orig_header->subject,false,false,true);
822 $mailprio = $orig_header->priority;
823 $orig_from = '';
824 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
825 // rewrap the body to clean up quotations and line lengths
826 sqBodyWrap($body, $editor_size);
827 break;
828 case ('forward'):
829 $send_to = '';
830 $subject = getforwardSubject(decodeHeader($orig_header->subject,false,false,true));
831 $body = getforwardHeader($orig_header) . $body;
832 // the logic for calling sqUnWordWrap here would be to allow the browser to wrap the lines
833 // forwarded message text should be as undisturbed as possible, so commenting out this call
834 // sqUnWordWrap($body);
835 $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection);
91c27aee 836
73ad81bf 837 //add a blank line after the forward headers
838 $body = "\n" . $body;
839 break;
840 case ('forward_as_attachment'):
841 $subject = getforwardSubject(decodeHeader($orig_header->subject,false,false,true));
842 $composeMessage = getMessage_RFC822_Attachment($message, $composeMessage, $passed_id, $passed_ent_id, $imapConnection);
843 $body = '';
844 break;
845 case ('reply_all'):
846 if(isset($orig_header->mail_followup_to) && $orig_header->mail_followup_to) {
847 $send_to = $orig_header->getAddr_s('mail_followup_to');
b268e66b 848 } else {
73ad81bf 849 $send_to_cc = replyAllString($orig_header);
850 $send_to_cc = decodeHeader($send_to_cc,false,false,true);
b268e66b 851 }
73ad81bf 852 case ('reply'):
853 // skip this if send_to was already set right above here
854 if(!$send_to) {
855 $send_to = $orig_header->reply_to;
856 if (is_array($send_to) && count($send_to)) {
857 $send_to = $orig_header->getAddr_s('reply_to');
858 } else if (is_object($send_to)) { /* unneccesarry, just for failsafe purpose */
859 $send_to = $orig_header->getAddr_s('reply_to');
860 } else {
861 $send_to = $orig_header->getAddr_s('from');
862 }
dd4a44cd 863 }
73ad81bf 864 $send_to = decodeHeader($send_to,false,false,true);
865 $subject = decodeHeader($orig_header->subject,false,false,true);
866 $subject = str_replace('"', "'", $subject);
867 $subject = trim($subject);
868 if (substr(strtolower($subject), 0, 3) != 're:') {
869 $subject = 'Re: ' . $subject;
870 }
871 /* this corrects some wrapping/quoting problems on replies */
872 $rewrap_body = explode("\n", $body);
873 $from = (is_array($orig_header->from)) ? $orig_header->from[0] : $orig_header->from;
874 $body = '';
875 $strip_sigs = getPref($data_dir, $username, 'strip_sigs');
876 foreach ($rewrap_body as $line) {
877 if ($strip_sigs && substr($line,0,3) == '-- ') {
878 break;
879 }
880 if (preg_match("/^(>+)/", $line, $matches)) {
881 $gt = $matches[1];
882 $body .= $body_quote . str_replace("\n", "\n$body_quote$gt ", rtrim($line)) ."\n";
883 } else {
884 $body .= $body_quote . (!empty($body_quote) ? ' ' : '') . str_replace("\n", "\n$body_quote" . (!empty($body_quote) ? ' ' : ''), rtrim($line)) . "\n";
885 }
a61878d0 886 }
c9d61baf 887
73ad81bf 888 //rewrap the body to clean up quotations and line lengths
889 $body = sqBodyWrap ($body, $editor_size);
c9d61baf 890
73ad81bf 891 $body = getReplyCitation($from , $orig_header->date) . $body;
892 $composeMessage->reply_rfc822_header = $orig_header;
12a0ed01 893
73ad81bf 894 break;
895 default:
896 break;
41b94d65 897 }
a91189d6 898 $compose_messages[$session] = $composeMessage;
899 sqsession_register($compose_messages, 'compose_messages');
5da08ef7 900 session_write_close();
a61878d0 901 sqimap_logout($imapConnection);
41b94d65 902 }
a61878d0 903 $ret = array( 'send_to' => $send_to,
73ad81bf 904 'send_to_cc' => $send_to_cc,
905 'send_to_bcc' => $send_to_bcc,
906 'subject' => $subject,
907 'mailprio' => $mailprio,
908 'body' => $body,
909 'identity' => $identity );
a61878d0 910
41b94d65 911 return ($ret);
48985d59 912} /* function newMail() */
913
50706f77 914/**
915 * downloads attachments from original message, stores them in attachment directory and adds
916 * them to composed message.
917 * @param object $message
918 * @param object $composeMessage
919 * @param integer $passed_id
920 * @param mixed $entities
921 * @param mixed $imapConnection
91c27aee 922 * @return object
50706f77 923 */
a43e4b90 924function getAttachments($message, &$composeMessage, $passed_id, $entities, $imapConnection) {
8df4c929 925 global $attachment_dir, $username, $data_dir, $squirrelmail_language, $languages;
48985d59 926 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
1c044820 927 if (!count($message->entities) ||
73ad81bf 928 ($message->type0 == 'message' && $message->type1 == 'rfc822')) {
41b94d65 929 if ( !in_array($message->entity_id, $entities) && $message->entity_id) {
73ad81bf 930 switch ($message->type0) {
931 case 'message':
932 if ($message->type1 == 'rfc822') {
933 $filename = $message->rfc822_header->subject;
934 if ($filename == "") {
935 $filename = "untitled-".$message->entity_id;
936 }
937 $filename .= '.msg';
938 } else {
939 $filename = $message->getFilename();
181538ac 940 }
73ad81bf 941 break;
942 default:
943 if (!$message->mime_header) { /* temporary hack */
944 $message->mime_header = $message->header;
945 }
946 $filename = $message->getFilename();
947 break;
948 }
949 $filename = str_replace('&#32;', ' ', decodeHeader($filename));
950 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
951 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode')) {
f4bb5d22 952 $filename = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode', $filename);
73ad81bf 953 }
954 $localfilename = GenerateRandomString(32, '', 7);
955 $full_localfilename = "$hashed_attachment_dir/$localfilename";
956 while (file_exists($full_localfilename)) {
957 $localfilename = GenerateRandomString(32, '', 7);
958 $full_localfilename = "$hashed_attachment_dir/$localfilename";
959 }
960 $message->att_local_name = $full_localfilename;
961
962 $composeMessage->initAttachment($message->type0.'/'.$message->type1,$filename,
963 $full_localfilename);
964
965 /* Write Attachment to file */
966 $fp = fopen ("$hashed_attachment_dir/$localfilename", 'wb');
91c27aee 967 mime_print_body_lines ($imapConnection, $passed_id, $message->entity_id, $message->header->encoding, $fp);
73ad81bf 968 fclose ($fp);
48985d59 969 }
734f4ee6 970 } else {
a43e4b90 971 for ($i=0, $entCount=count($message->entities); $i<$entCount;$i++) {
972 $composeMessage=getAttachments($message->entities[$i], $composeMessage, $passed_id, $entities, $imapConnection);
48985d59 973 }
974 }
a43e4b90 975 return $composeMessage;
48985d59 976}
977
1c044820 978function getMessage_RFC822_Attachment($message, $composeMessage, $passed_id,
73ad81bf 979 $passed_ent_id='', $imapConnection) {
ce68b76b 980 global $attachment_dir, $username, $data_dir;
a6ec592e 981 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
756406df 982 if (!$passed_ent_id) {
1c044820 983 $body_a = sqimap_run_command($imapConnection,
73ad81bf 984 'FETCH '.$passed_id.' RFC822',
985 TRUE, $response, $readmessage,
986 TRUE);
756406df 987 } else {
1c044820 988 $body_a = sqimap_run_command($imapConnection,
73ad81bf 989 'FETCH '.$passed_id.' BODY['.$passed_ent_id.']',
990 TRUE, $response, $readmessage, TRUE);
a61878d0 991 $message = $message->parent;
756406df 992 }
d0519c03 993 if ($response == 'OK') {
a61878d0 994 $subject = encodeHeader($message->rfc822_header->subject);
995 array_shift($body_a);
1c044820 996 array_pop($body_a);
a61878d0 997 $body = implode('', $body_a) . "\r\n";
1c044820 998
a61878d0 999 $localfilename = GenerateRandomString(32, 'FILE', 7);
1000 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1c044820 1001
1002 $fp = fopen($full_localfilename, 'w');
a61878d0 1003 fwrite ($fp, $body);
1004 fclose($fp);
5a1f1da3 1005 $composeMessage->initAttachment('message/rfc822',$subject.'.msg',
73ad81bf 1006 $full_localfilename);
a43e4b90 1007 }
1008 return $composeMessage;
a6ec592e 1009}
1010
41b94d65 1011function showInputForm ($session, $values=false) {
ce68b76b 1012 global $send_to, $send_to_cc, $body, $startMessage, $action,
1013 $color, $use_signature, $signature, $prefix_sig,
8d8da447 1014 $editor_size, $editor_height, $subject, $newmail,
73ad81bf 1015 $use_javascript_addr_book, $send_to_bcc, $passed_id, $mailbox,
1016 $from_htmladdr_search, $location_of_buttons, $attachment_dir,
ce68b76b 1017 $username, $data_dir, $identity, $idents, $delete_draft,
1018 $mailprio, $compose_new_win, $saved_draft, $mail_sent, $sig_first,
73ad81bf 1019 $username, $compose_messages, $composesession, $default_charset;
a43e4b90 1020
91c27aee 1021
a43e4b90 1022 $composeMessage = $compose_messages[$session];
41b94d65 1023 if ($values) {
73ad81bf 1024 $send_to = $values['send_to'];
1025 $send_to_cc = $values['send_to_cc'];
1026 $send_to_bcc = $values['send_to_bcc'];
1027 $subject = $values['subject'];
1028 $mailprio = $values['mailprio'];
1029 $body = $values['body'];
1030 $identity = (int) $values['identity'];
676bb189 1031 } else {
73ad81bf 1032 $send_to = decodeHeader($send_to, true, false);
1033 $send_to_cc = decodeHeader($send_to_cc, true, false);
1034 $send_to_bcc = decodeHeader($send_to_bcc, true, false);
41b94d65 1035 }
1c044820 1036
48985d59 1037 if ($use_javascript_addr_book) {
39bfea8f 1038 echo "\n". '<script language="JavaScript">'."\n<!--\n" .
73ad81bf 1039 'function open_abook() { ' . "\n" .
1040 ' var nwin = window.open("addrbook_popup.php","abookpopup",' .
1041 '"width=670,height=300,resizable=yes,scrollbars=yes");' . "\n" .
1042 ' if((!nwin.opener) && (document.windows != null))' . "\n" .
1043 ' nwin.opener = document.windows;' . "\n" .
1044 "}\n" .
1045 "// -->\n</script>\n\n";
48985d59 1046 }
1047
4a1788b3 1048 echo "\n" . '<form name="compose" action="compose.php" method="post" ' .
73ad81bf 1049 'enctype="multipart/form-data"';
4a1788b3 1050 do_hook('compose_form');
1c044820 1051
48985d59 1052 echo ">\n";
1053
df96b37a 1054 echo addHidden('startMessage', $startMessage);
4a1788b3 1055
41b94d65 1056 if ($action == 'draft') {
df96b37a 1057 echo addHidden('delete_draft', $passed_id);
48985d59 1058 }
1059 if (isset($delete_draft)) {
df96b37a 1060 echo addHidden('delete_draft', $delete_draft);
48985d59 1061 }
da95c4b6 1062 if (isset($session)) {
df96b37a 1063 echo addHidden('session', $session);
da95c4b6 1064 }
1c044820 1065
08bad2b1 1066 if (isset($passed_id)) {
df96b37a 1067 echo addHidden('passed_id', $passed_id);
08bad2b1 1068 }
44560457 1069
9c3e6cd4 1070 if ($saved_draft == 'yes') {
39bfea8f 1071 echo '<br /><center><b>'. _("Draft Saved").'</center></b>';
9c3e6cd4 1072 }
1073 if ($mail_sent == 'yes') {
39bfea8f 1074 echo '<br /><center><b>'. _("Your Message has been sent.").'</center></b>';
9c3e6cd4 1075 }
4a1788b3 1076 echo '<table align="center" cellspacing="0" border="0">' . "\n";
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";
9c3e6cd4 1082 }
78a35fcd 1083 if ($location_of_buttons == 'top') {
1084 showComposeButtonRow();
1085 }
48985d59 1086
0f257091 1087 /* display select list for identities */
1e2a6ff6 1088 if (count($idents) > 1) {
73ad81bf 1089 $ident_list = array();
1090 foreach($idents as $id => $data) {
1091 $ident_list[$id] =
1092 $data['full_name'].' <'.$data['email_address'].'>';
1093 }
0f257091 1094 echo ' <tr>' . "\n" .
73ad81bf 1095 html_tag( 'td', '', 'right', $color[4], 'width="10%"' ) .
1096 _("From:") . '</td>' . "\n" .
1097 html_tag( 'td', '', 'left', $color[4], 'width="90%"' ) .
1098 ' '.
1099 addSelect('identity', $ident_list, $identity, TRUE);
1e2a6ff6 1100
df96b37a 1101 echo ' </td>' . "\n" .
73ad81bf 1102 ' </tr>' . "\n";
41b94d65 1103 }
46f2284f 1104
0f257091 1105 echo ' <tr>' . "\n" .
73ad81bf 1106 html_tag( 'td', '', 'right', $color[4], 'width="10%"' ) .
1107 _("To") . ':</td>' . "\n" .
1108 html_tag( 'td', '', 'left', $color[4], 'width="90%"' ) .
1109 addInput('send_to', $send_to, 60). '<br />' . "\n" .
1110 ' </td>' . "\n" .
1111 ' </tr>' . "\n" .
1112 ' <tr>' . "\n" .
1113 html_tag( 'td', '', 'right', $color[4] ) .
1114 _("Cc") . ':</td>' . "\n" .
1115 html_tag( 'td', '', 'left', $color[4] ) .
1116 addInput('send_to_cc', $send_to_cc, 60). '<br />' . "\n" .
1117 ' </td>' . "\n" .
1118 ' </tr>' . "\n" .
1119 ' <tr>' . "\n" .
1120 html_tag( 'td', '', 'right', $color[4] ) .
1121 _("Bcc") . ':</td>' . "\n" .
1122 html_tag( 'td', '', 'left', $color[4] ) .
1123 addInput('send_to_bcc', $send_to_bcc, 60).'<br />' . "\n" .
1124 ' </td>' . "\n" .
1125 ' </tr>' . "\n" .
1126 ' <tr>' . "\n" .
1127 html_tag( 'td', '', 'right', $color[4] ) .
1128 _("Subject") . ':</td>' . "\n" .
1129 html_tag( 'td', '', 'left', $color[4] ) . "\n";
df96b37a 1130 echo ' '.addInput('subject', $subject, 60).
73ad81bf 1131 ' </td>' . "\n" .
1132 ' </tr>' . "\n\n";
48985d59 1133
78a35fcd 1134 if ($location_of_buttons == 'between') {
1135 showComposeButtonRow();
1136 }
4dfb9db7 1137
0f257091 1138 /* why this distinction? */
fdc83c55 1139 if ($compose_new_win == '1') {
39bfea8f 1140 echo ' <tr>' . "\n" .
73ad81bf 1141 ' <td bgcolor="' . $color[0] . '" colspan="2" align="center">' . "\n" .
1142 ' <textarea name="body" id="body" rows="' . (int)$editor_height .
1143 '" cols="' . (int)$editor_size . '" wrap="virtual">';
fdc83c55 1144 }
1145 else {
39bfea8f 1146 echo ' <tr>' . "\n" .
1147 ' <td bgcolor="' . $color[4] . '" colspan="2">' . "\n" .
1148 ' &nbsp;&nbsp;<textarea name="body" id="body" rows="' . (int)$editor_height .
1149 '" cols="' . (int)$editor_size . '" wrap="virtual">';
fdc83c55 1150 }
0f257091 1151
48985d59 1152 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
1e2a6ff6 1153 $signature = $idents[$identity]['signature'];
d3c13a51 1154
3b17e952 1155 if ($sig_first == '1') {
50706f77 1156 /*
1157 * FIXME: test is specific to ja_JP translation implementation.
1158 * This test might apply incorrect conversion to other translations, but
91c27aee 1159 * use of 7bit iso-2022-jp charset in other translations might have other
50706f77 1160 * issues too.
1161 */
ab4700c3 1162 if ($default_charset == 'iso-2022-jp') {
83be314a 1163 echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
1164 } else {
73ad81bf 1165 echo "\n\n".($prefix_sig==true? "-- \n":'').decodeHeader($signature,false,false);
83be314a 1166 }
df96b37a 1167 echo "\n\n".htmlspecialchars(decodeHeader($body,false,false));
3b17e952 1168 }
1169 else {
df96b37a 1170 echo "\n\n".htmlspecialchars(decodeHeader($body,false,false));
50706f77 1171 // FIXME: test is specific to ja_JP translation implementation. See above comments.
ab4700c3 1172 if ($default_charset == 'iso-2022-jp') {
83be314a 1173 echo "\n\n".($prefix_sig==true? "-- \n":'').mb_convert_encoding($signature, 'EUC-JP');
1174 }else{
73ad81bf 1175 echo "\n\n".($prefix_sig==true? "-- \n":'').decodeHeader($signature,false,false);
1176 }
3b17e952 1177 }
73ad81bf 1178 } else {
1179 echo htmlspecialchars(decodeHeader($body,false,false));
48985d59 1180 }
0f257091 1181 echo '</textarea><br />' . "\n" .
73ad81bf 1182 ' </td>' . "\n" .
1183 ' </tr>' . "\n";
48985d59 1184
12a0ed01 1185
48985d59 1186 if ($location_of_buttons == 'bottom') {
1187 showComposeButtonRow();
1188 } else {
0f257091 1189 echo ' <tr>' . "\n" .
73ad81bf 1190 html_tag( 'td', '', 'right', '', 'colspan="2"' ) . "\n" .
1191 ' ' . addSubmit(_("Send"), 'send').
1192 ' &nbsp;&nbsp;&nbsp;&nbsp;<br /><br />' . "\n" .
1193 ' </td>' . "\n" .
1194 ' </tr>' . "\n";
48985d59 1195 }
46bb8da8 1196
48985d59 1197 /* This code is for attachments */
73ad81bf 1198 if ((bool) ini_get('file_uploads')) {
1199
1200 /* Calculate the max size for an uploaded file.
1201 * This is advisory for the user because we can't actually prevent
1202 * people to upload too large files. */
1203 $sizes = array();
1204 /* php.ini vars which influence the max for uploads */
1205 $configvars = array('post_max_size', 'memory_limit', 'upload_max_filesize');
1206 foreach($configvars as $var) {
4f21ba00 1207 /* skip 0 or empty values, and -1 which means 'unlimited' */
73ad81bf 1208 if( $size = getByteSize(ini_get($var)) ) {
4f21ba00 1209 if ( $size != '-1' ) {
1210 $sizes[] = $size;
1211 }
73ad81bf 1212 }
0a2c3218 1213 }
0a2c3218 1214
73ad81bf 1215 if(count($sizes) > 0) {
1216 $maxsize = '(max.&nbsp;' . show_readable_size( min( $sizes ) ) . ')';
4f21ba00 1217 echo addHidden('MAX_FILE_SIZE', min( $sizes ));
73ad81bf 1218 } else {
1219 $maxsize = '';
1220 }
4f21ba00 1221 echo ' <tr>' . "\n" .
73ad81bf 1222 ' <td colspan="2">' . "\n" .
1223 ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.
1224 ' border="0" bgcolor="'.$color[9].'">' . "\n" .
1225 ' <tr>' . "\n" .
1226 ' <td>' . "\n" .
1227 ' <table width="100%" cellpadding="3" cellspacing="0" align="center"'.
1228 ' border="0">' . "\n" .
1229 ' <tr>' . "\n" .
1230 html_tag( 'td', '', 'right', '', 'valign="middle"' ) .
1231 _("Attach:") . '</td>' . "\n" .
1232 html_tag( 'td', '', 'left', '', 'valign="middle"' ) .
1233 ' <input name="attachfile" size="48" type="file" />' . "\n" .
1234 ' &nbsp;&nbsp;<input type="submit" name="attach"' .
1235 ' value="' . _("Add") .'" />' . "\n" .
1236 $maxsize .
1237 ' </td>' . "\n" .
1238 ' </tr>' . "\n";
1239
1240 $s_a = array();
1241 if ($composeMessage->entities) {
1242 foreach ($composeMessage->entities as $key => $attachment) {
1243 $attached_file = $attachment->att_local_name;
1244 if ($attachment->att_local_name || $attachment->body_part) {
1245 $attached_filename = decodeHeader($attachment->mime_header->getParameter('name'));
1246 $type = $attachment->mime_header->type0.'/'.
a91189d6 1247 $attachment->mime_header->type1;
1c044820 1248
73ad81bf 1249 $s_a[] = '<table bgcolor="'.$color[0].
1250 '" border="0"><tr><td>'.
1251 addCheckBox('delete[]', FALSE, $key).
1252 "</td><td>\n" . $attached_filename .
1253 '</td><td>-</td><td> ' . $type . '</td><td>('.
1254 show_readable_size( filesize( $attached_file ) ) . ')</td></tr></table>'."\n";
1255 }
1256 }
4dfb9db7 1257 }
73ad81bf 1258 if (count($s_a)) {
1259 foreach ($s_a as $s) {
1260 echo '<tr>' . html_tag( 'td', '', 'left', $color[0], 'colspan="2"' ) . $s .'</td></tr>';
1261 }
1262 echo '<tr><td colspan="2"><input type="submit" name="do_delete" value="' .
1263 _("Delete selected attachments") . "\" />\n" .
1264 '</td></tr>';
1265 }
1266 echo ' </table>' . "\n" .
1267 ' </td>' . "\n" .
1268 ' </tr>' . "\n" .
1269 ' </table>' . "\n" .
1270 ' </td>' . "\n" .
1271 ' </tr>' . "\n";
1272 } // End of file_uploads if-block
41b94d65 1273 /* End of attachment code */
07687736 1274 if ($compose_new_win == '1') {
39bfea8f 1275 echo '</table>'."\n";
07687736 1276 }
a64f47e7 1277
39bfea8f 1278 echo '</table>' . "\n" .
0fa24cb6 1279 addHidden('username', $username).
1280 addHidden('smaction', $action).
1281 addHidden('mailbox', $mailbox);
1c044820 1282 /*
1283 store the complete ComposeMessages array in a hidden input value
0ec1a14b 1284 so we can restore them in case of a session timeout.
73ad81bf 1285 */
953fa718 1286 sqgetGlobalVar('QUERY_STRING', $queryString, SQ_SERVER);
df96b37a 1287 echo addHidden('restoremessages', serialize($compose_messages)).
73ad81bf 1288 addHidden('composesession', $composesession).
1289 addHidden('querystring', $queryString).
1290 "</form>\n";
a64f47e7 1291 if (!(bool) ini_get('file_uploads')) {
73ad81bf 1292 /* File uploads are off, so we didn't show that part of the form.
1293 To avoid bogus bug reports, tell the user why. */
50706f77 1294 echo '<p style="text-align:center">'
1295 . _("Because PHP file uploads are turned off, you can not attach files to this message. Please see your system administrator for details.")
1296 . "</p>\r\n";
a64f47e7 1297 }
1298
9f599fe3 1299 do_hook('compose_bottom');
39bfea8f 1300 echo '</body></html>' . "\n";
48985d59 1301}
1302
1303
70c4fd84 1304function showComposeButtonRow() {
78a35fcd 1305 global $use_javascript_addr_book, $save_as_draft,
73ad81bf 1306 $default_use_priority, $mailprio, $default_use_mdn,
1307 $request_mdn, $request_dr,
1308 $data_dir, $username;
70c4fd84 1309
39bfea8f 1310 echo ' <tr>' . "\n" .
73ad81bf 1311 ' <td></td>' . "\n" .
1312 ' <td>' . "\n";
ae25968c 1313 if ($default_use_priority) {
1314 if(!isset($mailprio)) {
df96b37a 1315 $mailprio = '3';
1316 }
1317 echo ' ' . _("Priority") .
73ad81bf 1318 addSelect('mailprio', array(
1319 '1' => _("High"),
1320 '3' => _("Normal"),
1321 '5' => _("Low") ), $mailprio, TRUE);
ae25968c 1322 }
1323 $mdn_user_support=getPref($data_dir, $username, 'mdn_user_support',$default_use_mdn);
1324 if ($default_use_mdn) {
70c4fd84 1325 if ($mdn_user_support) {
0ec1a14b 1326 echo ' ' . _("Receipt") .': '.
73ad81bf 1327 addCheckBox('request_mdn', $request_mdn == '1', '1'). _("On Read").
1328 addCheckBox('request_dr', $request_dr == '1', '1'). _("On Delivery");
70c4fd84 1329 }
ae25968c 1330 }
48985d59 1331
39bfea8f 1332 echo ' </td>' . "\n" .
73ad81bf 1333 ' </tr>' . "\n" .
1334 ' <tr>' . "\n" .
1335 ' <td></td>' . "\n" .
1336 ' <td>' . "\n" .
1337 ' <input type="submit" name="sigappend" value="' . _("Signature") . '" />' . "\n";
78a35fcd 1338 if ($use_javascript_addr_book) {
39bfea8f 1339 echo " <script language=\"JavaScript\"><!--\n document.write(\"".
73ad81bf 1340 " <input type=button value=\\\""._("Addresses").
1341 "\\\" onclick=\\\"javascript:open_abook();\\\" />\");".
1342 " // --></script><noscript>\n".
1343 ' <input type="submit" name="html_addr_search" value="'.
1344 _("Addresses").'" />'.
1345 " </noscript>\n";
734f4ee6 1346 } else {
39bfea8f 1347 echo ' <input type="submit" name="html_addr_search" value="'.
73ad81bf 1348 _("Addresses").'" />' . "\n";
78a35fcd 1349 }
48985d59 1350
78a35fcd 1351 if ($save_as_draft) {
39bfea8f 1352 echo ' <input type="submit" name ="draft" value="' . _("Save Draft") . "\" />\n";
78a35fcd 1353 }
0a17f9dd 1354
39bfea8f 1355 echo ' <input type="submit" name="send" value="'. _("Send") . '" />' . "\n";
78a35fcd 1356 do_hook('compose_button_row');
441f2d33 1357
39bfea8f 1358 echo ' </td>' . "\n" .
73ad81bf 1359 ' </tr>' . "\n\n";
78a35fcd 1360}
b278172f 1361
70c4fd84 1362function checkInput ($show) {
78a35fcd 1363 /*
1364 * I implemented the $show variable because the error messages
1365 * were getting sent before the page header. So, I check once
1366 * using $show=false, and then when i'm ready to display the error
1367 * message, show=true
1368 */
6bf2a88f 1369 global $body, $send_to, $send_to_bcc, $subject, $color;
78a35fcd 1370
6bf2a88f 1371 if ($send_to == '' && $send_to_bcc == '') {
78a35fcd 1372 if ($show) {
0ad7dbda 1373 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
78a35fcd 1374 }
1375 return false;
1376 }
1377 return true;
1378} /* function checkInput() */
df15de21 1379
3806fa52 1380
00793a25 1381/* True if FAILURE */
da95c4b6 1382function saveAttachedFiles($session) {
0b97a708 1383 global $_FILES, $attachment_dir, $attachments, $username,
73ad81bf 1384 $data_dir, $compose_messages;
45cdd1b5 1385 /* get out of here if no file was attached at all */
1386 if (! is_uploaded_file($_FILES['attachfile']['tmp_name']) ) {
1387 return true;
1388 }
1389
4c9d2242 1390 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
1391 $localfilename = GenerateRandomString(32, '', 7);
1392 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1393 while (file_exists($full_localfilename)) {
1394 $localfilename = GenerateRandomString(32, '', 7);
1395 $full_localfilename = "$hashed_attachment_dir/$localfilename";
1396 }
1397
e6675f9a 1398 // FIXME: we SHOULD prefer move_uploaded_file over rename because
50706f77 1399 // m_u_f works better with restricted PHP installs (safe_mode, open_basedir)
e6675f9a 1400 if (!@rename($_FILES['attachfile']['tmp_name'], $full_localfilename)) {
73ad81bf 1401 if (!@move_uploaded_file($_FILES['attachfile']['tmp_name'],$full_localfilename)) {
1402 return true;
1403 }
a61878d0 1404 }
a43e4b90 1405 $message = $compose_messages[$session];
0b97a708 1406 $type = strtolower($_FILES['attachfile']['type']);
1407 $name = $_FILES['attachfile']['name'];
a43e4b90 1408 $message->initAttachment($type, $name, $full_localfilename);
1409 $compose_messages[$session] = $message;
b0314f04 1410 sqsession_register($compose_messages , 'compose_messages');
4c9d2242 1411}
1412
a43e4b90 1413function ClearAttachments($composeMessage) {
b48d3c53 1414 if ($composeMessage->att_local_name) {
1415 $attached_file = $composeMessage->att_local_name;
a43e4b90 1416 if (file_exists($attached_file)) {
1417 unlink($attached_file);
8712abea 1418 }
da95c4b6 1419 }
a43e4b90 1420 for ($i=0, $entCount=count($composeMessage->entities);$i< $entCount; ++$i) {
1421 ClearAttachments($composeMessage->entities[$i]);
1422 }
4c9d2242 1423}
1424
0a2c3218 1425/* parse values like 8M and 2k into bytes */
1426function getByteSize($ini_size) {
1427
4d30dc83 1428 if(!$ini_size) {
1429 return FALSE;
1430 }
da95c4b6 1431
0a2c3218 1432 $ini_size = trim($ini_size);
1433
5b9716de 1434 // if there's some kind of letter at the end of the string we need to multiply.
1435 if(!is_numeric(substr($ini_size, -1))) {
1436
1437 switch(strtoupper(substr($ini_size, -1))) {
1438 case 'G':
73ad81bf 1439 $bytesize = 1073741824;
1440 break;
5b9716de 1441 case 'M':
73ad81bf 1442 $bytesize = 1048576;
1443 break;
5b9716de 1444 case 'K':
73ad81bf 1445 $bytesize = 1024;
1446 break;
5b9716de 1447 }
1448
4d30dc83 1449 return ($bytesize * (int)substr($ini_size, 0, -1));
0a2c3218 1450 }
1c044820 1451
4d30dc83 1452 return $ini_size;
0a2c3218 1453}
a43e4b90 1454
4c9d2242 1455
50706f77 1456/**
1457 * temporary function to make use of the deliver class.
1458 * In the future the responsable backend should be automaticly loaded
1459 * and conf.pl should show a list of available backends.
1460 * The message also should be constructed by the message class.
73ad81bf 1461 */
b7ff469f 1462function deliverMessage($composeMessage, $draft=false) {
a43e4b90 1463 global $send_to, $send_to_cc, $send_to_bcc, $mailprio, $subject, $body,
73ad81bf 1464 $username, $popuser, $usernamedata, $identity, $idents, $data_dir,
1465 $request_mdn, $request_dr, $default_charset, $color, $useSendmail,
1466 $domain, $action, $default_move_to_sent, $move_to_sent;
a43e4b90 1467 global $imapServerAddress, $imapPort, $sent_folder, $key;
1468
1469 $rfc822_header = $composeMessage->rfc822_header;
24192f77 1470
1471 $abook = addressbook_init(false, true);
310dfeb6 1472 $rfc822_header->to = $rfc822_header->parseAddress($send_to,true, array(), '', $domain, array(&$abook,'lookup'));
1473 $rfc822_header->cc = $rfc822_header->parseAddress($send_to_cc,true,array(), '',$domain, array(&$abook,'lookup'));
1474 $rfc822_header->bcc = $rfc822_header->parseAddress($send_to_bcc,true, array(), '',$domain, array(&$abook,'lookup'));
a43e4b90 1475 $rfc822_header->priority = $mailprio;
1476 $rfc822_header->subject = $subject;
310dfeb6 1477
a43e4b90 1478 $special_encoding='';
1479 if (strtolower($default_charset) == 'iso-2022-jp') {
1480 if (mb_detect_encoding($body) == 'ASCII') {
a91189d6 1481 $special_encoding = '8bit';
a43e4b90 1482 } else {
1483 $body = mb_convert_encoding($body, 'JIS');
1484 $special_encoding = '7bit';
1485 }
1486 }
1487 $composeMessage->setBody($body);
1488
1489 if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
73ad81bf 1490 $popuser = $usernamedata[1];
1491 $domain = $usernamedata[2];
1492 unset($usernamedata);
a43e4b90 1493 } else {
73ad81bf 1494 $popuser = $username;
a43e4b90 1495 }
1496 $reply_to = '';
1e2a6ff6 1497 $from_mail = $idents[$identity]['email_address'];
1498 $full_name = $idents[$identity]['full_name'];
1499 $reply_to = $idents[$identity]['reply_to'];
9ca455db 1500 if (!$from_mail) {
73ad81bf 1501 $from_mail = "$popuser@$domain";
045714fd 1502 }
1503 $rfc822_header->from = $rfc822_header->parseAddress($from_mail,true);
1504 if ($full_name) {
9783f396 1505 $from = $rfc822_header->from[0];
a91189d6 1506 if (!$from->host) $from->host = $domain;
12a0ed01 1507 $full_name_encoded = encodeHeader($full_name);
1508 if ($full_name_encoded != $full_name) {
1509 $from_addr = $full_name_encoded .' <'.$from->mailbox.'@'.$from->host.'>';
1510 } else {
1511 $from_addr = '"'.$full_name .'" <'.$from->mailbox.'@'.$from->host.'>';
1512 }
045714fd 1513 $rfc822_header->from = $rfc822_header->parseAddress($from_addr,true);
a43e4b90 1514 }
a43e4b90 1515 if ($reply_to) {
73ad81bf 1516 $rfc822_header->reply_to = $rfc822_header->parseAddress($reply_to,true);
a43e4b90 1517 }
1518 /* Receipt: On Read */
1519 if (isset($request_mdn) && $request_mdn) {
73ad81bf 1520 $rfc822_header->dnt = $rfc822_header->parseAddress($from_mail,true);
a43e4b90 1521 }
1522 /* Receipt: On Delivery */
1523 if (isset($request_dr) && $request_dr) {
73ad81bf 1524 $rfc822_header->more_headers['Return-Receipt-To'] = $from_mail;
a43e4b90 1525 }
1526 /* multipart messages */
1527 if (count($composeMessage->entities)) {
1528 $message_body = new Message();
a91189d6 1529 $message_body->body_part = $composeMessage->body_part;
1530 $composeMessage->body_part = '';
1531 $mime_header = new MessageHeader;
1532 $mime_header->type0 = 'text';
1533 $mime_header->type1 = 'plain';
1534 if ($special_encoding) {
1535 $mime_header->encoding = $special_encoding;
1c044820 1536 } else {
12a0ed01 1537 $mime_header->encoding = '8bit';
a91189d6 1538 }
1539 if ($default_charset) {
1540 $mime_header->parameters['charset'] = $default_charset;
1541 }
1c044820 1542 $message_body->mime_header = $mime_header;
a43e4b90 1543 array_unshift($composeMessage->entities, $message_body);
a91189d6 1544 $content_type = new ContentType('multipart/mixed');
a43e4b90 1545 } else {
1e2026df 1546 $content_type = new ContentType('text/plain');
1547 if ($special_encoding) {
1548 $rfc822_header->encoding = $special_encoding;
1c044820 1549 } else {
1e2026df 1550 $rfc822_header->encoding = '8bit';
1c044820 1551 }
426e0b72 1552 if ($default_charset) {
1553 $content_type->properties['charset']=$default_charset;
73ad81bf 1554 }
181538ac 1555 }
1c044820 1556
a43e4b90 1557 $rfc822_header->content_type = $content_type;
1558 $composeMessage->rfc822_header = $rfc822_header;
181538ac 1559
1c044820 1560 /* Here you can modify the message structure just before we hand
5618924b 1561 it over to deliver */
5255585d 1562 $hookReturn = do_hook('compose_send', $composeMessage);
1563 /* Get any changes made by plugins to $composeMessage. */
1564 if ( is_object($hookReturn[1]) ) {
1565 $composeMessage = $hookReturn[1];
1566 }
a43e4b90 1567
b48d3c53 1568 if (!$useSendmail && !$draft) {
a91189d6 1569 require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php');
1570 $deliver = new Deliver_SMTP();
ce68b76b 1571 global $smtpServerAddress, $smtpPort, $pop_before_smtp;
a91189d6 1572
a91189d6 1573 $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false;
9bd3b1e6 1574 get_smtp_user($user, $pass);
a91189d6 1575 $stream = $deliver->initStream($composeMessage,$domain,0,
73ad81bf 1576 $smtpServerAddress, $smtpPort, $user, $pass, $authPop);
b48d3c53 1577 } elseif (!$draft) {
73ad81bf 1578 require_once(SM_PATH . 'class/deliver/Deliver_SendMail.class.php');
1579 global $sendmail_path;
1580 $deliver = new Deliver_SendMail();
1581 $stream = $deliver->initStream($composeMessage,$sendmail_path);
b48d3c53 1582 } elseif ($draft) {
73ad81bf 1583 global $draft_folder;
1584 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1585 $imap_stream = sqimap_login($username, $key, $imapServerAddress,
1586 $imapPort, 0);
1587 if (sqimap_mailbox_exists ($imap_stream, $draft_folder)) {
1588 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1589 $imap_deliver = new Deliver_IMAP();
1590 $length = $imap_deliver->mail($composeMessage);
1591 sqimap_append ($imap_stream, $draft_folder, $length);
1592 $imap_deliver->mail($composeMessage, $imap_stream);
1593 sqimap_append_done ($imap_stream, $draft_folder);
1594 sqimap_logout($imap_stream);
1595 unset ($imap_deliver);
1596 return $length;
4dfb9db7 1597 } else {
73ad81bf 1598 $msg = '<br />'.sprintf(_("Error: Draft folder %s does not exist."), $draft_folder);
1599 plain_error_message($msg, $color);
1600 return false;
a91189d6 1601 }
a43e4b90 1602 }
1603 $succes = false;
1604 if ($stream) {
a91189d6 1605 $length = $deliver->mail($composeMessage, $stream);
1606 $succes = $deliver->finalizeStream($stream);
a43e4b90 1607 }
1608 if (!$succes) {
46f2284f 1609 $msg = $deliver->dlv_msg . '<br />' .
0e1a248b 1610 _("Server replied:") . ' ' . $deliver->dlv_ret_nr . ' ' .
73ad81bf 1611 $deliver->dlv_server_msg;
a43e4b90 1612 plain_error_message($msg, $color);
1613 } else {
1614 unset ($deliver);
20152d80 1615 $move_to_sent = getPref($data_dir,$username,'move_to_sent');
1616 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
e4a1f097 1617
1618 /* Move to sent code */
1619 if (isset($default_move_to_sent) && ($default_move_to_sent != 0)) {
1620 $svr_allow_sent = true;
1621 } else {
1622 $svr_allow_sent = false;
1623 }
1624
1c044820 1625 if (isset($sent_folder) && (($sent_folder != '') || ($sent_folder != 'none'))
73ad81bf 1626 && sqimap_mailbox_exists( $imap_stream, $sent_folder)) {
e4a1f097 1627 $fld_sent = true;
1628 } else {
1629 $fld_sent = false;
1630 }
1631
1632 if ((isset($move_to_sent) && ($move_to_sent != 0)) || (!isset($move_to_sent))) {
1633 $lcl_allow_sent = true;
1634 } else {
1635 $lcl_allow_sent = false;
1636 }
1637
1638 if (($fld_sent && $svr_allow_sent && !$lcl_allow_sent) || ($fld_sent && $lcl_allow_sent)) {
eceefdfe 1639 global $passed_id, $mailbox, $action;
1640 if ($action == 'reply' || $action == 'reply_all') {
1641 $save_reply_with_orig=getPref($data_dir,$username,'save_reply_with_orig');
1642 if ($save_reply_with_orig) {
1643 $sent_folder = $mailbox;
1644 }
1645 }
e4a1f097 1646 sqimap_append ($imap_stream, $sent_folder, $length);
a91189d6 1647 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
1648 $imap_deliver = new Deliver_IMAP();
1649 $imap_deliver->mail($composeMessage, $imap_stream);
e4a1f097 1650 sqimap_append_done ($imap_stream, $sent_folder);
a91189d6 1651 unset ($imap_deliver);
1652 }
1653 global $passed_id, $mailbox, $action;
1654 ClearAttachments($composeMessage);
1655 if ($action == 'reply' || $action == 'reply_all') {
1656 sqimap_mailbox_select ($imap_stream, $mailbox);
91c27aee 1657 sqimap_toggle_flag($imap_stream, array($passed_id), '\\Answered', true, false);
a91189d6 1658 }
73ad81bf 1659 sqimap_logout($imap_stream);
a43e4b90 1660 }
1661 return $succes;
1662}
1663
a2b193bc 1664?>