0a4db331b3595cafcbeff1e701822ab9ec5ff6cd
[squirrelmail.git] / src / compose.php
1 <?php
2 /**
3 ** compose.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** This code sends a mail.
9 **
10 ** There are 3 modes of operation:
11 ** - Start new mail
12 ** - Add an attachment
13 ** - Send mail
14 **
15 ** $Id$
16 **/
17
18 session_start();
19
20 if (!isset($strings_php))
21 include("../functions/strings.php");
22 if (!isset($config_php))
23 include("../config/config.php");
24 if (!isset($page_header_php))
25 include("../functions/page_header.php");
26 if (!isset($imap_php))
27 include("../functions/imap.php");
28 if (!isset($date_php))
29 include("../functions/date.php");
30 if (!isset($mime_php))
31 include("../functions/mime.php");
32 if (!isset($smtp_php))
33 include("../functions/smtp.php");
34 if (!isset($display_messages_php))
35 include("../functions/display_messages.php");
36 if (!isset($auth_php))
37 include ("../functions/auth.php");
38 if (!isset($plugin_php))
39 include ("../functions/plugin.php");
40
41 include("../src/load_prefs.php");
42
43 if (!isset($attachments))
44 $attachments = array();
45
46 // This function is used when not sending or adding attachments
47 function newMail () {
48 global $forward_id, $imapConnection, $msg, $ent_num, $body_ary, $body,
49 $reply_id, $send_to, $send_to_cc, $mailbox, $send_to_bcc, $editor_size;
50
51 $send_to = decodeHeader($send_to);
52 $send_to_cc = decodeHeader($send_to_cc);
53 $send_to_bcc = decodeHeader($send_to_bcc);
54
55 if ($forward_id)
56 $id = $forward_id;
57 elseif ($reply_id)
58 $id = $reply_id;
59
60
61 if (isset($id)) {
62 sqimap_mailbox_select($imapConnection, $mailbox);
63 $message = sqimap_get_message($imapConnection, $id, $mailbox);
64 $orig_header = $message->header;
65 if ($ent_num)
66 $message = getEntity($message, $ent_num);
67
68 if ($message->header->type0 == "text" || $message->header->type1 == "message") {
69 if ($ent_num)
70 $body = decodeBody(mime_fetch_body($imapConnection, $id, $ent_num), $message->header->encoding);
71 else
72 $body = decodeBody(mime_fetch_body($imapConnection, $id, 1), $message->header->encoding);
73 } else {
74 $body = "";
75 }
76
77 if ($message->header->type1 == "html")
78 $body = strip_tags($body);
79
80 sqUnWordWrap($body);
81 $body_ary = explode("\n", $body);
82 $i = count($body_ary) - 1;
83 while ($i >= 0 && ereg("^[>\\s]*$", $body_ary[$i])) {
84 unset($body_ary[$i]);
85 $i --;
86 }
87 $body = "";
88 for ($i=0; isset($body_ary[$i]); $i++) {
89 if (! $forward_id)
90 {
91 if (ereg('^[\\s>]+', $body_ary[$i]))
92 {
93 $body_ary[$i] = '>' . $body_ary[$i];
94 }
95 else
96 {
97 $body_ary[$i] = '> ' . $body_ary[$i];
98 }
99 }
100 sqWordWrap($body_ary[$i], $editor_size - 1);
101 $body .= $body_ary[$i] . "\n";
102 unset($body_ary[$i]);
103 }
104 if ($forward_id)
105 {
106 $bodyTop = "-------- " . _("Original Message") . " --------\n";
107 $bodyTop .= _("Subject") . ": " . $orig_header->subject . "\n";
108 $bodyTop .= _("From") . ": " . $orig_header->from . "\n";
109 $bodyTop .= _("To") . ": " . $orig_header->to[0] . "\n";
110 if (count($orig_header->to) > 1) {
111 for ($x=1; $x < count($orig_header->to); $x++) {
112 $bodyTop .= " " . $orig_header->to[$x] . "\n";
113 }
114 }
115 $bodyTop .= "\n";
116 $body = $bodyTop . $body;
117 }
118
119 return;
120 }
121
122 if (!$send_to) {
123 $send_to = sqimap_find_email($send_to);
124 }
125
126 /** This formats a CC string if they hit "reply all" **/
127 if ($send_to_cc != "") {
128 $send_to_cc = ereg_replace( '"[^"]*"', "", $send_to_cc);
129 $send_to_cc = ereg_replace(";", ",", $send_to_cc);
130 $sendcc = explode(",", $send_to_cc);
131 $send_to_cc = "";
132
133 for ($i = 0; $i < count($sendcc); $i++) {
134 $sendcc[$i] = trim($sendcc[$i]);
135 if ($sendcc[$i] == "")
136 continue;
137
138 $sendcc[$i] = sqimap_find_email($sendcc[$i]);
139 $whofrom = sqimap_find_displayable_name($msg["HEADER"]["FROM"]);
140 $whoreplyto = sqimap_find_email($msg["HEADER"]["REPLYTO"]);
141
142 if ((strtolower(trim($sendcc[$i])) != strtolower(trim($whofrom))) &&
143 (strtolower(trim($sendcc[$i])) != strtolower(trim($whoreplyto))) &&
144 (trim($sendcc[$i]) != "")) {
145 $send_to_cc .= trim($sendcc[$i]) . ", ";
146 }
147 }
148 $send_to_cc = trim($send_to_cc);
149 if (substr($send_to_cc, -1) == ",") {
150 $send_to_cc = substr($send_to_cc, 0, strlen($send_to_cc) - 1);
151 }
152 }
153 } // function newMail()
154
155 function getAttachments($message) {
156 global $mailbox, $attachments, $attachment_dir, $imapConnection,
157 $ent_num, $forward_id;
158
159 if (!$message) {
160 sqimap_mailbox_select($imapConnection, $mailbox);
161 $message = sqimap_get_message($imapConnection, $forward_id, $mailbox); }
162
163 if (!$message->entities) {
164 if ($message->header->entity_id != $ent_num) {
165 $filename = decodeHeader($message->header->filename);
166
167 if ($filename == "")
168 $filename = "untitled-".$message->header->entity_id;
169
170 $localfilename = md5($filename.", $REMOTE_IP, REMOTE_PORT, $UNIQUE_ID, extra-stuff here");
171
172 // Write File Info
173 $fp = fopen ($attachment_dir.$localfilename.".info", "w");
174 fputs ($fp, strtolower($message->header->type0)."/".strtolower($message->header->type1)."\n".$filename."\n");
175 fclose ($fp);
176
177 // Write Attachment to file
178 $fp = fopen ($attachment_dir.$localfilename, "w");
179 fputs ($fp, decodeBody(mime_fetch_body($imapConnection, $forward_id, $message->header->entity_id), $message->header->encoding));
180 fclose ($fp);
181
182 $attachments[$localfilename] = $filename;
183
184 }
185 } else {
186 for ($i = 0; $i < count($message->entities); $i++) {
187 getAttachments($message->entities[$i]);
188 }
189 }
190 return;
191 }
192
193 function showInputForm () {
194 global $send_to, $send_to_cc, $reply_subj, $forward_subj, $body,
195 $passed_body, $color, $use_signature, $signature, $prefix_sig,
196 $editor_size, $attachments, $subject, $newmail,
197 $use_javascript_addr_book, $send_to_bcc, $reply_id, $mailbox,
198 $from_htmladdr_search, $location_of_buttons;
199
200 $subject = decodeHeader($subject);
201 $reply_subj = decodeHeader($reply_subj);
202 $forward_subj = decodeHeader($forward_subj);
203
204 if ($use_javascript_addr_book) {
205 echo "\n<SCRIPT LANGUAGE=JavaScript><!--\n";
206 echo "function open_abook() { \n";
207 echo " var nwin = window.open(\"addrbook_popup.php\",\"abookpopup\",";
208 echo "\"width=670,height=300,resizable=yes,scrollbars=yes\");\n";
209 echo " if((!nwin.opener) && (document.windows != null))\n";
210 echo " nwin.opener = document.windows;\n";
211 echo "}\n";
212 echo "// --></SCRIPT>\n\n";
213 }
214
215 echo "\n<FORM name=compose action=\"compose.php\" METHOD=POST ENCTYPE=\"multipart/form-data\"";
216 do_hook("compose_form");
217 echo ">\n";
218 if ($reply_id) {
219 echo "<input type=hidden name=reply_id value=$reply_id>\n";
220 }
221 printf("<INPUT TYPE=hidden NAME=mailbox VALUE=\"%s\">\n", htmlspecialchars($mailbox));
222 echo "<TABLE WIDTH=\"100%\" ALIGN=center CELLSPACING=0 BORDER=0>\n";
223
224 if ($location_of_buttons == 'top') showComposeButtonRow();
225
226 echo " <TR>\n";
227 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
228 echo _("To:");
229 echo " </TD><TD BGCOLOR=\"$color[4]\">\n";
230 printf(" <INPUT TYPE=text NAME=\"send_to\" VALUE=\"%s\" SIZE=60><BR>\n",
231 htmlspecialchars($send_to));
232 echo " </TD>\n";
233 echo " </TR>\n";
234 echo " <TR>\n";
235 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
236 echo _("CC:");
237 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
238 printf(" <INPUT TYPE=text NAME=\"send_to_cc\" SIZE=60 VALUE=\"%s\"><BR>\n",
239 htmlspecialchars($send_to_cc));
240 echo " </TD>\n";
241 echo " </TR>\n";
242 echo " <TR>\n";
243 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
244 echo _("BCC:");
245 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
246 printf(" <INPUT TYPE=text NAME=\"send_to_bcc\" VALUE=\"%s\" SIZE=60><BR>\n",
247 htmlspecialchars($send_to_bcc));
248 echo "</TD></TR>\n";
249
250 echo " <TR>\n";
251 echo " <TD BGCOLOR=\"$color[4]\" ALIGN=RIGHT>\n";
252 echo _("Subject:");
253 echo " </TD><TD BGCOLOR=\"$color[4]\" ALIGN=LEFT>\n";
254 if ($reply_subj) {
255 $reply_subj = str_replace("\"", "'", $reply_subj);
256 $reply_subj = trim($reply_subj);
257 if (substr(strtolower($reply_subj), 0, 3) != "re:")
258 $reply_subj = "Re: $reply_subj";
259 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
260 htmlspecialchars($reply_subj));
261 } else if ($forward_subj) {
262 $forward_subj = str_replace("\"", "'", $forward_subj);
263 $forward_subj = trim($forward_subj);
264 if ((substr(strtolower($forward_subj), 0, 4) != "fwd:") &&
265 (substr(strtolower($forward_subj), 0, 5) != "[fwd:") &&
266 (substr(strtolower($forward_subj), 0, 6) != "[ fwd:"))
267 $forward_subj = "[Fwd: $forward_subj]";
268 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
269 htmlspecialchars($forward_subj));
270 } else {
271 printf(" <INPUT TYPE=text NAME=subject SIZE=60 VALUE=\"%s\">",
272 htmlspecialchars($subject));
273 }
274 echo "</td></tr>\n\n";
275
276 if ($location_of_buttons == 'between') showComposeButtonRow();
277
278 echo " <TR>\n";
279 echo " <TD BGCOLOR=\"$color[4]\" COLSPAN=2>\n";
280 echo " &nbsp;&nbsp;<TEXTAREA NAME=body ROWS=20 COLS=\"$editor_size\" WRAP=HARD>";
281 echo htmlspecialchars($body);
282 if ($use_signature == true && $newmail == true && !isset($from_htmladdr_search)) {
283 if ( $prefix_sig == true )
284 echo "\n\n-- \n" . htmlspecialchars($signature);
285 else
286 echo "\n\n" . htmlspecialchars($signature);
287 }
288 echo "</TEXTAREA><BR>\n";
289 echo " </TD>\n";
290 echo " </TR>\n";
291
292 if ($location_of_buttons == 'bottom')
293 showComposeButtonRow();
294 else {
295 echo " <TR><TD>&nbsp;</TD><TD ALIGN=LEFT><INPUT TYPE=SUBMIT NAME=send VALUE=\""._("Send")."\"></TD></TR>\n";
296 }
297
298 // This code is for attachments
299 echo " <tr>\n";
300 echo " <TD BGCOLOR=\"$color[0]\" VALIGN=TOP ALIGN=RIGHT>\n";
301 echo " <SMALL><BR></SMALL>"._("Attach:");
302 echo " </td><td ALIGN=left BGCOLOR=\"$color[0]\">\n";
303 echo " <INPUT NAME=\"attachfile\" SIZE=48 TYPE=\"file\">\n";
304 echo " &nbsp;&nbsp;<input type=\"submit\" name=\"attach\"";
305 echo " value=\"" . _("Add") ."\">\n";
306 echo " </td>\n";
307 echo " </tr>\n";
308 if (isset($attachments) && count($attachments)>0) {
309 echo "<tr><td bgcolor=\"$color[0]\" align=right>\n";
310 echo "&nbsp;";
311 echo "</td><td align=left bgcolor=\"$color[0]\">";
312 while (list($localname, $remotename) = each($attachments)) {
313 echo "<input type=\"checkbox\" name=\"delete[]\" value=\"$localname\">\n";
314 echo "$remotename <input type=\"hidden\" name=\"attachments[$localname]\" value=\"$remotename\"><br>\n";
315 }
316
317 echo "<input type=\"submit\" name=\"do_delete\" value=\""._("Delete selected attachments")."\">\n";
318 echo "</td></tr>";
319 }
320 // End of attachment code
321
322 echo "</TABLE>\n";
323 echo "</FORM>";
324 do_hook("compose_bottom");
325 }
326
327 function showComposeButtonRow() {
328 global $use_javascript_addr_book;
329 echo " <TR><td>\n </td><td>\n";
330 if ($use_javascript_addr_book) {
331 echo " <SCRIPT LANGUAGE=JavaScript><!--\n document.write(\"";
332 echo " <input type=button value=\\\""._("Addresses")."\\\" onclick='javascript:open_abook();'>\");";
333 echo " // --></SCRIPT><NOSCRIPT>\n";
334 echo " <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
335 echo " </NOSCRIPT>\n";
336 } else {
337 echo " <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
338 }
339 echo "\n <INPUT TYPE=SUBMIT NAME=send VALUE=\"". _("Send") . "\">\n";
340
341 do_hook("compose_button_row");
342
343 echo " </TD>\n";
344 echo " </TR>\n\n";
345 }
346
347 function showSentForm () {
348 echo "<BR><BR><BR><CENTER><B>Message Sent!</B><BR><BR>";
349 echo "You will be automatically forwarded.<BR>If not, <A HREF=\"right_main.php\">click here</A>";
350 echo "</CENTER>";
351 }
352
353 function checkInput ($show) {
354 /** I implemented the $show variable because the error messages
355 were getting sent before the page header. So, I check once
356 using $show=false, and then when i'm ready to display the
357 error message, show=true **/
358 global $body, $send_to, $subject, $color;
359
360 if ($send_to == "") {
361 if ($show)
362 plain_error_message(_("You have not filled in the \"To:\" field."), $color);
363 return false;
364 }
365 return true;
366 } // function checkInput()
367
368
369 // True if FAILURE
370 function saveAttachedFiles() {
371 global $HTTP_POST_FILES, $attachment_dir, $attachments;
372
373 is_logged_in();
374 $localfilename = GenerateRandomString(32, '', 7);
375
376 if (!@rename($HTTP_POST_FILES['attachfile']['tmp_name'], $attachment_dir.$localfilename)) {
377 if (!@copy($HTTP_POST_FILES['attachfile']['tmp_name'], $attachment_dir.$localfilename)) {
378 return true;
379 }
380 }
381
382 if (!isset($failed) || !$failed) {
383 // Write information about the file
384 $fp = fopen ($attachment_dir.$localfilename.".info", "w");
385 fputs ($fp, $HTTP_POST_FILES['attachfile']['type']."\n".$HTTP_POST_FILES['attachfile']['name']."\n");
386 fclose ($fp);
387
388 $attachments[$localfilename] = $HTTP_POST_FILES['attachfile']['name'];
389 }
390 }
391
392 function SqConvertRussianCharsets(){
393 //
394 // This function is here because Russian Apache is a bastard when it comes to
395 // attachments. The solution is to turn off attachment recoding for multipart
396 // forms and do it manually.
397 // See graf@relhum.org for support.
398 //
399 global $CHARSET, $SOURCE_CHARSET, $send_to, $send_to_cc, $send_to_bcc, $subject, $body;
400 $charset_ary = array("koi8-r" => "k",
401 "windows-1251" => "w",
402 "ibm866" => "a",
403 "ISO-8859-5" => "i");
404 $body = convert_cyr_string($body, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
405 $send_to = convert_cyr_string($send_to, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
406 $send_to_cc = convert_cyr_string($send_to_cc, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
407 $send_to_bcc = convert_cyr_string($send_to_bcc, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
408 $subject = convert_cyr_string($subject, $charset_ary[$CHARSET], $charset_ary[$SOURCE_CHARSET]);
409 } // end SqConvertRussianCharsets()
410
411 // Russian Apache sets $CHARSET. See if this is Russian Apache.
412 // If so, check if the source charset (koi8-r) is different from the
413 // one submitted by the browser. If so, recode the parts of the form
414 // to the needed format so SM can proceed and not mangle the cyrillic
415 // input.
416 // See graf@relhum.org for support.
417 //
418 if (isset($CHARSET) && $CHARSET != $SOURCE_CHARSET) SqConvertRussianCharsets();
419
420 if (!isset($mailbox) || $mailbox == "" || ($mailbox == "None"))
421 $mailbox = "INBOX";
422
423 if(isset($send)) {
424 if (isset($HTTP_POST_FILES['attachfile']) &&
425 $HTTP_POST_FILES['attachfile']['tmp_name'] &&
426 $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none')
427 $AttachFailure = saveAttachedFiles();
428 if (checkInput(false) && !isset($AttachFailure)) {
429 $urlMailbox = urlencode (trim($mailbox));
430 if (! isset($reply_id))
431 $reply_id = 0;
432 // Set $default_charset to correspond with the user's selection
433 // of language interface.
434 set_my_charset();
435 sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id);
436 header ("Location: right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=1");
437 } else {
438 //$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
439 displayPageHeader($color, $mailbox);
440
441 if ($AttachFailure)
442 plain_error_message(_("Could not move/copy file. File not attached"), $color);
443
444 checkInput(true);
445
446 showInputForm();
447 //sqimap_logout($imapConnection);
448 }
449 } else if (isset($html_addr_search_done)) {
450 is_logged_in();
451 displayPageHeader($color, $mailbox);
452
453 for ($i=0; $i < count($send_to_search); $i++) {
454 if ($send_to)
455 $send_to .= ", ";
456 $send_to .= $send_to_search[$i];
457 }
458
459 for ($i=0; $i < count($send_to_cc_search); $i++) {
460 if ($send_to_cc)
461 $send_to_cc .= ", ";
462 $send_to_cc .= $send_to_cc_search[$i];
463 }
464
465 showInputForm();
466 } else if (isset($html_addr_search)) {
467 // I am using an include so as to elminiate an extra unnecessary click. If you
468 // can think of a better way, please implement it.
469 include ("./addrbook_search_html.php");
470 } else if (isset($attach)) {
471 if (saveAttachedFiles())
472 plain_error_message(_("Could not move/copy file. File not attached"), $color);
473 displayPageHeader($color, $mailbox);
474 showInputForm();
475 } else if (isset($do_delete)) {
476 is_logged_in();
477 displayPageHeader($color, $mailbox);
478
479 while (list($lkey, $localname) = each($delete)) {
480 unset ($attachments[$localname]);
481 unlink ($attachment_dir.$localname);
482 unlink ($attachment_dir.$localname.".info");
483 }
484
485 showInputForm();
486 } else if (isset($smtpErrors)) {
487 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
488 displayPageHeader($color, $mailbox);
489
490 $newmail = true;
491 if ($forward_id && $ent_num) getAttachments(0);
492
493 newMail();
494 showInputForm();
495 sqimap_logout($imapConnection);
496 } else {
497 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
498 displayPageHeader($color, $mailbox);
499
500 $newmail = true;
501
502 if (isset($forward_id) && isset($ent_num)) getAttachments(0);
503
504 newMail();
505 showInputForm();
506 sqimap_logout($imapConnection);
507 }
508 ?>